Browse Source

tpws: do not set debug level=1 in --debug if already raised to 2

pull/385/head
bol-van 8 months ago
parent
commit
2f11c330cd
  1. 4
      tpws/tpws.c

4
tpws/tpws.c

@ -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…
Cancel
Save