diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-05-29 19:02:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-05-29 19:02:48 +0000 |
commit | c1f07d77bbeaafba83d5fe9efbc95882e26c9c1d (patch) | |
tree | a01e7134907acfdfe6a86f1fd8085fa65aa0a94f | |
parent | c53337066e0c7500e866082618777bfff826f452 (diff) |
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. */ |