phc2sys.c: Replace usage of variable 'use_syslog'

Replaced usage of variable 'use_syslog' with struct config item
'use_syslog'. Original variable removed.

Signed-off-by: Peter Schneider <peter@psch.de>
master
Peter Schneider 2018-04-15 21:13:51 +02:00 committed by Richard Cochran
parent f7274b1e84
commit cfbc8bdc18
1 changed files with 5 additions and 3 deletions

View File

@ -1345,7 +1345,7 @@ int main(int argc, char *argv[])
int autocfg = 0, rt = 0;
int c, domain_number = 0, pps_fd = -1;
int r = -1, wait_sync = 0;
int print_level = LOG_INFO, use_syslog = 1;
int print_level = LOG_INFO;
int ntpshm_segment;
double phc_rate, tmp;
struct node node = {
@ -1497,7 +1497,9 @@ int main(int argc, char *argv[])
}
break;
case 'q':
use_syslog = 0;
if (config_set_int(cfg, "use_syslog", 0)) {
goto end;
}
break;
case 'v':
version_show(stdout);
@ -1537,7 +1539,7 @@ int main(int argc, char *argv[])
print_set_progname(progname);
print_set_tag(config_get_string(cfg, NULL, "message_tag"));
print_set_verbose(config_get_int(cfg, NULL, "verbose"));
print_set_syslog(use_syslog);
print_set_syslog(config_get_int(cfg, NULL, "use_syslog"));
print_set_level(config_get_int(cfg, NULL, "logging_level"));
if (autocfg) {