mirror of
https://github.com/bol-van/zapret.git
synced 2024-11-11 17:29:16 +05:00
tpws: do not set debug level=1 in --debug if already raised to 2
This commit is contained in:
parent
dee9c04d2a
commit
2f11c330cd
@ -730,12 +730,12 @@ void parse_params(int argc, char *argv[])
|
||||
}
|
||||
if (params.droproot && chown(params.debug_logfile, params.uid, -1))
|
||||
fprintf(stderr, "could not chown %s. log file may not be writable after privilege drop\n", params.debug_logfile);
|
||||
params.debug = 1;
|
||||
if (!params.debug) params.debug = 1;
|
||||
params.debug_target = LOG_TARGET_FILE;
|
||||
}
|
||||
else if (!strcmp(optarg,"syslog"))
|
||||
{
|
||||
params.debug = 1;
|
||||
if (!params.debug) params.debug = 1;
|
||||
params.debug_target = LOG_TARGET_SYSLOG;
|
||||
openlog("tpws",LOG_PID,LOG_USER);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user