diff options
author | Bruce Montrose <montrose@itd.nrl.navy.mil> | 2002-07-12 18:14:17 +0000 |
---|---|---|
committer | Bruce Montrose <montrose@itd.nrl.navy.mil> | 2002-07-12 18:14:17 +0000 |
commit | be25ffd5d76fe1ed4a3e6ea983fcbdcbbdf13453 (patch) | |
tree | ec4f7c496c7a29c41e04cab082504eebcec75971 /src/smtpap | |
parent | d00c39231df6acf5c831974f4f55b96f8fa348c4 (diff) | |
download | tor-be25ffd5d76fe1ed4a3e6ea983fcbdcbbdf13453.tar tor-be25ffd5d76fe1ed4a3e6ea983fcbdcbbdf13453.tar.gz |
removed loglevel from global namespace. severity level is set using log() with a NULL format argument now. example: log(LOG_ERR,NULL);
svn:r44
Diffstat (limited to 'src/smtpap')
-rw-r--r-- | src/smtpap/smtpap.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/smtpap/smtpap.c b/src/smtpap/smtpap.c index 701dde809..a420268a7 100644 --- a/src/smtpap/smtpap.c +++ b/src/smtpap/smtpap.c @@ -8,8 +8,11 @@ /* * Changes : * $Log$ - * Revision 1.1 2002/06/26 22:45:50 arma - * Initial revision + * Revision 1.2 2002/07/12 18:14:17 montrose + * removed loglevel from global namespace. severity level is set using log() with a NULL format argument now. example: log(LOG_ERR,NULL); + * + * Revision 1.1.1.1 2002/06/26 22:45:50 arma + * initial commit: current code * * Revision 1.32 2002/04/02 14:29:49 badbytes * Final finishes. @@ -133,7 +136,6 @@ #include "smtpap.h" #include "io.h" -int loglevel = LOG_ERR; struct timeval conn_tout; struct timeval *conn_toutp = &conn_tout; @@ -1141,6 +1143,7 @@ int handle_connection(int s, struct hostent *local, struct sockaddr_in remote, u int main(int argc, char *argv[]) { + int loglevel = LOG_DEBUG; int retval = 0; char c; /* command-line option */ @@ -1166,7 +1169,7 @@ int main(int argc, char *argv[]) struct sigaction sa; char *errtest = NULL; /* for detecting strtoul() errors */ - + /* set default listening port */ p = htons(SMTPAP_LISTEN_PORT); @@ -1198,7 +1201,7 @@ int main(int argc, char *argv[]) print_usage(); return 0; break; - case 'l': + case 'l': if (!strcmp(optarg,"emerg")) loglevel = LOG_EMERG; else if (!strcmp(optarg,"alert")) @@ -1234,7 +1237,9 @@ int main(int argc, char *argv[]) abort(); } } - + + log(loglevel,NULL); /* assign severity level for logger */ + /* the -f option is mandatory */ if (conf_filename == NULL) { |