From: Adam Dickmeiss Date: Tue, 18 Nov 2008 10:55:29 +0000 (+0100) Subject: Reformat and add missing fclose. X-Git-Tag: v1.0.15~3 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=06c29d513670aa5baf1e005c26f40b7a4ce71483;p=metaproxy-moved-to-github.git Reformat and add missing fclose. --- diff --git a/src/filter_auth_simple.cpp b/src/filter_auth_simple.cpp index 16eeaf5..9cd47db 100644 --- a/src/filter_auth_simple.cpp +++ b/src/filter_auth_simple.cpp @@ -115,7 +115,8 @@ void mp::filter::AuthSimple::config_userRegister(std::string filename) strerror(errno)); char buf[1000]; - while (fgets(buf, sizeof buf, fp)) { + while (fgets(buf, sizeof buf, fp)) + { if (*buf == '\n' || *buf == '#') continue; buf[strlen(buf)-1] = 0; @@ -133,14 +134,15 @@ void mp::filter::AuthSimple::config_userRegister(std::string filename) boost::split(tmp.dbs, databasesp, boost::is_any_of(",")); m_p->userRegister[buf] = tmp; - if (0) { // debugging + if (0) + { // debugging printf("Added user '%s' -> password '%s'\n", buf, passwdp); std::list::const_iterator i; - for (i = tmp.dbs.begin(); i != tmp.dbs.end(); i++) { + for (i = tmp.dbs.begin(); i != tmp.dbs.end(); i++) printf("db '%s'\n", (*i).c_str()); - } } } + fclose(fp); }