Skip to content
Snippets Groups Projects
Commit 23447252 authored by HustonMmmavr's avatar HustonMmmavr Committed by Kirill Yukhin
Browse files

ssl_cert_paths_discover: delete unused headers

* Remove unnecessary `#include "tt_static.h"` from
  src/ssl_cert_paths_discover.c
* Fix typo at test/app-tap/ssl-cert-paths-discover.test.lua
  call `os.exit` instead of `os:exit`

A follow up on #5615
parent c0e6748d
No related branches found
No related tags found
No related merge requests found
......@@ -35,7 +35,6 @@
#include <sys/stat.h>
#include <openssl/ssl.h>
#include "ssl_cert_paths_discover.h"
#include "tt_static.h"
static int
is_dir_empty(const char *dir_path)
......
......@@ -178,4 +178,4 @@ end)
----- Cleanup
fio.rmtree(temp_dir)
os:exit(test:check() and 0 or 1)
os.exit(test:check() and 0 or 1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment