Commit c7d85db1 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fix AWS key managemennt compile error on Linux

parent 13752faa
...@@ -154,7 +154,7 @@ static vector<string> traverse_current_directory() ...@@ -154,7 +154,7 @@ static vector<string> traverse_current_directory()
if (!dir) if (!dir)
return v; return v;
struct dirent *e; struct dirent *e;
while ((e= readdir(dir)) while ((e= readdir(dir)))
v.push_back(e->d_name); v.push_back(e->d_name);
closedir(dir); closedir(dir);
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment