aboutsummaryrefslogtreecommitdiffstats
path: root/conf.c
diff options
context:
space:
mode:
authorokan2013-12-17 16:10:43 +0000
committerokan2013-12-17 16:10:43 +0000
commitf0ed7b1f525d21c88da75575c8899a6c013743a0 (patch)
tree40fde8951819cf4bc2174e255acdaa448602dfb1 /conf.c
parent9798372dada127b4294dd53e80501c05e544b86c (diff)
downloadcwm-f0ed7b1f525d21c88da75575c8899a6c013743a0.tar.gz
replace with memset
Diffstat (limited to '')
-rw-r--r--conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf.c b/conf.c
index d65742f..b651fc0 100644
--- a/conf.c
+++ b/conf.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: conf.c,v 1.152 2013/12/16 19:02:17 okan Exp $
+ * $OpenBSD: conf.c,v 1.153 2013/12/17 16:10:43 okan Exp $
*/
#include <sys/param.h>
@@ -226,7 +226,7 @@ conf_init(struct conf *c)
{
u_int i;
- bzero(c, sizeof(*c));
+ (void)memset(c, 0, sizeof(*c));
c->bwidth = CONF_BWIDTH;
c->mamount = CONF_MAMOUNT;