summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ldapd
diff options
context:
space:
mode:
authorclaudio <claudio@openbsd.org>2015-12-05 16:26:45 +0000
committerclaudio <claudio@openbsd.org>2015-12-05 16:26:45 +0000
commit5d658b7ae555f7865cab469c2e5874f91a8c4deb (patch)
treecfdc14af4bc06138d2cee2eff48a16e37ad0db4e /usr.sbin/ldapd
parentKeep kernel definitions under _KERNEL to unbreak ports that include (diff)
downloadwireguard-openbsd-5d658b7ae555f7865cab469c2e5874f91a8c4deb.tar.xz
wireguard-openbsd-5d658b7ae555f7865cab469c2e5874f91a8c4deb.zip
#include <string.h> not strings.h
Diffstat (limited to 'usr.sbin/ldapd')
-rw-r--r--usr.sbin/ldapd/ber.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldapd/ber.c b/usr.sbin/ldapd/ber.c
index 37bf466ee93..fcc0dfdb4eb 100644
--- a/usr.sbin/ldapd/ber.c
+++ b/usr.sbin/ldapd/ber.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ber.c,v 1.8 2015/02/12 00:30:38 pelikan Exp $ */
+/* $OpenBSD: ber.c,v 1.9 2015/12/05 16:26:45 claudio Exp $ */
/*
* Copyright (c) 2007 Reyk Floeter <reyk@vantronix.net>
@@ -25,7 +25,7 @@
#include <stdlib.h>
#include <err.h> /* XXX for debug output */
#include <stdio.h> /* XXX for debug output */
-#include <strings.h>
+#include <string.h>
#include <unistd.h>
#include <stdarg.h>