diff options
author | 2008-05-29 19:02:47 +0000 | |
---|---|---|
committer | 2008-05-29 19:02:47 +0000 | |
commit | b377a34015d29e134f3ec868d068af1fd0fb1f9a (patch) | |
tree | 4674256893ffb094b14d6bcb127415e9ebdac124 | |
parent | dlg backed out one too many revisions, bring back 1.2 (diff) | |
download | wireguard-openbsd-b377a34015d29e134f3ec868d068af1fd0fb1f9a.tar.xz wireguard-openbsd-b377a34015d29e134f3ec868d068af1fd0fb1f9a.zip |
appease stupid stupid gcc; ok millert
-rw-r--r-- | usr.sbin/dhcpd/dhcpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/dhcpd/dhcpd.c b/usr.sbin/dhcpd/dhcpd.c index a8bbc39f92f..da47b598910 100644 --- a/usr.sbin/dhcpd/dhcpd.c +++ b/usr.sbin/dhcpd/dhcpd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.c,v 1.37 2008/05/25 22:36:17 millert Exp $ */ +/* $OpenBSD: dhcpd.c,v 1.38 2008/05/29 19:02:47 deraadt Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@cvs.openbsd.org> @@ -75,7 +75,7 @@ main(int argc, char *argv[]) extern char *__progname; char *sync_iface = NULL; char *sync_baddr = NULL; - u_short sync_port; + u_short sync_port = 0; struct servent *ent; /* Initially, log errors to stderr as well as to syslogd. */ |