diff options
author | 2015-12-05 05:56:26 +0000 | |
---|---|---|
committer | 2015-12-05 05:56:26 +0000 | |
commit | 1c871f80b31d0acdd4df5292a52756fef4b746c3 (patch) | |
tree | 46053287e80045fdb7689a9e6c7e66324ef28778 | |
parent | vmctl has no need to change the socket that talks to vmd. (diff) | |
download | wireguard-openbsd-1c871f80b31d0acdd4df5292a52756fef4b746c3.tar.xz wireguard-openbsd-1c871f80b31d0acdd4df5292a52756fef4b746c3.zip |
strings.h -> string.h so that memcpy is declared. ok deraadt
-rw-r--r-- | usr.sbin/tcpdump/print-l2tp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/tcpdump/print-l2tp.c b/usr.sbin/tcpdump/print-l2tp.c index 857bac9ab25..98e04ea652b 100644 --- a/usr.sbin/tcpdump/print-l2tp.c +++ b/usr.sbin/tcpdump/print-l2tp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print-l2tp.c,v 1.8 2015/01/16 06:40:21 deraadt Exp $ */ +/* $OpenBSD: print-l2tp.c,v 1.9 2015/12/05 05:56:26 mmcc Exp $ */ /* * Copyright (c) 1991, 1993, 1994, 1995, 1996, 1997 @@ -25,7 +25,7 @@ #include <sys/types.h> #include <stdio.h> -#include <strings.h> +#include <string.h> #include "l2tp.h" #include "interface.h" |