phc2sys.c: Replace variable 'verbose'

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

Signed-off-by: Peter Schneider <peter@psch.de>
master
Peter Schneider 2018-04-15 21:13:50 +02:00 committed by Richard Cochran
parent 97ff23cc07
commit f7274b1e84
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 autocfg = 0, rt = 0;
int c, domain_number = 0, pps_fd = -1; int c, domain_number = 0, pps_fd = -1;
int r = -1, wait_sync = 0; int r = -1, wait_sync = 0;
int print_level = LOG_INFO, use_syslog = 1, verbose = 0; int print_level = LOG_INFO, use_syslog = 1;
int ntpshm_segment; int ntpshm_segment;
double phc_rate, tmp; double phc_rate, tmp;
struct node node = { struct node node = {
@ -1492,7 +1492,9 @@ int main(int argc, char *argv[])
} }
break; break;
case 'm': case 'm':
verbose = 1; if (config_set_int(cfg, "verbose", 1)) {
goto end;
}
break; break;
case 'q': case 'q':
use_syslog = 0; use_syslog = 0;
@ -1534,7 +1536,7 @@ int main(int argc, char *argv[])
print_set_progname(progname); print_set_progname(progname);
print_set_tag(config_get_string(cfg, NULL, "message_tag")); print_set_tag(config_get_string(cfg, NULL, "message_tag"));
print_set_verbose(verbose); print_set_verbose(config_get_int(cfg, NULL, "verbose"));
print_set_syslog(use_syslog); print_set_syslog(use_syslog);
print_set_level(config_get_int(cfg, NULL, "logging_level")); print_set_level(config_get_int(cfg, NULL, "logging_level"));