summaryrefslogtreecommitdiff
path: root/usr.sbin/ntpd/ntpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/ntpd/ntpd.c')
-rw-r--r--usr.sbin/ntpd/ntpd.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/usr.sbin/ntpd/ntpd.c b/usr.sbin/ntpd/ntpd.c
index 75930d1f5c2..cae33baade4 100644
--- a/usr.sbin/ntpd/ntpd.c
+++ b/usr.sbin/ntpd/ntpd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ntpd.c,v 1.49 2007/01/15 08:19:11 otto Exp $ */
+/* $OpenBSD: ntpd.c,v 1.50 2007/08/22 21:04:30 ckuethe Exp $ */
/*
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
@@ -48,6 +48,7 @@ volatile sig_atomic_t quit = 0;
volatile sig_atomic_t reconfig = 0;
volatile sig_atomic_t sigchld = 0;
struct imsgbuf *ibuf;
+int debugsyslog = 0;
void
sighdlr(int sig)
@@ -71,7 +72,7 @@ usage(void)
{
extern char *__progname;
- fprintf(stderr, "usage: %s [-dSs] [-f file]\n", __progname);
+ fprintf(stderr, "usage: %s [-dSsv] [-f file]\n", __progname);
exit(1);
}
@@ -95,7 +96,7 @@ main(int argc, char *argv[])
log_init(1); /* log to stderr until daemonized */
res_init(); /* XXX */
- while ((ch = getopt(argc, argv, "df:sS")) != -1) {
+ while ((ch = getopt(argc, argv, "df:sSv")) != -1) {
switch (ch) {
case 'd':
lconf.debug = 1;
@@ -109,6 +110,9 @@ main(int argc, char *argv[])
case 'S':
lconf.settime = 0;
break;
+ case 'v':
+ debugsyslog = 1;
+ break;
default:
usage();
/* NOTREACHED */