hotspot: make hotspot dir not hidden

This commit is contained in:
James Prestwood 2019-07-15 09:19:43 -07:00 committed by Denis Kenzior
parent c5eba1cc27
commit 85131f4827
2 changed files with 3 additions and 3 deletions

View File

@ -37,7 +37,7 @@
#include "src/ie.h"
static struct l_dir_watch *hs20_dir_watch;
static const char *hs20_dir = DAEMON_STORAGEDIR "/.hotspot";
static const char *hs20_dir = DAEMON_STORAGEDIR "/hotspot";
static struct l_queue *hs20_settings;
struct hs20_config {

View File

@ -486,8 +486,8 @@ int main(int argc, char *argv[])
goto fail_dbus;
}
if (create_dirs(DAEMON_STORAGEDIR "/.hotspot/")) {
l_error("Failed to create " DAEMON_STORAGEDIR "/.hotspot/");
if (create_dirs(DAEMON_STORAGEDIR "/hotspot/")) {
l_error("Failed to create " DAEMON_STORAGEDIR "/hotspot/");
goto fail_dbus;
}