X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=onak-conf.c;h=763bdb203de12b60bd88b3818b75bd76c66672aa;hb=a183a1f43e77bc96119f60a5b056dd0a489eabe2;hp=e3085e1996be9e1fa6ec7690ea8f70fdf7e10951;hpb=8e0907be1d73011075a99a0c029c56664e12843e;p=onak.git diff --git a/onak-conf.c b/onak-conf.c index e3085e1..763bdb2 100644 --- a/onak-conf.c +++ b/onak-conf.c @@ -45,6 +45,7 @@ struct onak_config config = { NULL, /* logfile */ false, /* use_keyd */ + ".", /* sock_dir */ /* * Options for directory backends. @@ -118,7 +119,12 @@ void readconfig(const char *configfile) { conffile = fopen(configfile, "r"); } if (conffile != NULL) { - fgets(curline, 1023, conffile); + if (!fgets(curline, 1023, conffile)) { + logthing(LOGTHING_CRITICAL, + "Problem reading configuration file."); + fclose(conffile); + return; + } while (!feof(conffile)) { for (i = strlen(curline) - 1; @@ -195,6 +201,8 @@ void readconfig(const char *configfile) { } else if (!strncmp("use_keyd ", curline, 9)) { config.use_keyd = parsebool(&curline[9], config.use_keyd); + } else if (!strncmp("sock_dir ", curline, 9)) { + config.sock_dir = strdup(&curline[9]); } else if (!strncmp("check_sighash ", curline, 9)) { config.check_sighash = parsebool(&curline[9], config.check_sighash); @@ -203,7 +211,12 @@ void readconfig(const char *configfile) { "Unknown config line: %s", curline); } - fgets(curline, 1023, conffile); + if (!fgets(curline, 1023, conffile) && + !feof(conffile)) { + logthing(LOGTHING_CRITICAL, + "Problem reading configuration file."); + break; + } } fclose(conffile); } else {