diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-13 18:55:01 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-04-13 18:55:01 +0000 |
commit | 435e1b2b7cf9947ee30bd1215b945d4c24d31cd8 (patch) | |
tree | d66d46f169f3cef459725541af5415ddff5dc24c /usr.sbin/hostapd/hostapd.c | |
parent | 12544acbc4af57fc96723a71b150feabf09891fc (diff) |
bzero of bss not needed
Diffstat (limited to 'usr.sbin/hostapd/hostapd.c')
-rw-r--r-- | usr.sbin/hostapd/hostapd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.sbin/hostapd/hostapd.c b/usr.sbin/hostapd/hostapd.c index 7364cc9bafe..422915bfffe 100644 --- a/usr.sbin/hostapd/hostapd.c +++ b/usr.sbin/hostapd/hostapd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hostapd.c,v 1.2 2005/04/13 18:25:28 henning Exp $ */ +/* $OpenBSD: hostapd.c,v 1.3 2005/04/13 18:55:00 deraadt Exp $ */ /* * Copyright (c) 2004, 2005 Reyk Floeter <reyk@vantronix.net> @@ -322,8 +322,6 @@ main(int argc, char *argv[]) char *iapp_iface = NULL, *hostap_iface = NULL, *config = NULL; int ch; - bzero(cfg, sizeof(struct hostapd_config)); - /* * Get and parse command line options */ |