summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryasuoka <yasuoka@openbsd.org>2015-12-04 13:12:44 +0000
committeryasuoka <yasuoka@openbsd.org>2015-12-04 13:12:44 +0000
commit268187f4a7853f4565b0f218d1f4095fe729eec1 (patch)
tree35d544dec42bcb6086439c5167d32546e099aa69
parentadd a test for wc -m (diff)
downloadwireguard-openbsd-268187f4a7853f4565b0f218d1f4095fe729eec1.tar.xz
wireguard-openbsd-268187f4a7853f4565b0f218d1f4095fe729eec1.zip
Fix typo in #include line.
-rw-r--r--usr.sbin/npppd/npppd/lcp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/npppd/npppd/lcp.c b/usr.sbin/npppd/npppd/lcp.c
index 9662f519427..8fc753f86b9 100644
--- a/usr.sbin/npppd/npppd/lcp.c
+++ b/usr.sbin/npppd/npppd/lcp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: lcp.c,v 1.14 2015/12/02 05:07:09 mmcc Exp $ */
+/* $OpenBSD: lcp.c,v 1.15 2015/12/04 13:12:44 yasuoka Exp $ */
/*-
* Copyright (c) 2009 Internet Initiative Japan Inc.
@@ -25,7 +25,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
-/* $Id: lcp.c,v 1.14 2015/12/02 05:07:09 mmcc Exp $ */
+/* $Id: lcp.c,v 1.15 2015/12/04 13:12:44 yasuoka Exp $ */
/**@file
* This file provides LCP related functions.
*<pre>
@@ -41,7 +41,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <syslog.h>
-#include <strings.h>
+#include <string.h>
#include <event.h>
#include <ctype.h>