diff options
author | 2015-12-07 18:59:31 +0000 | |
---|---|---|
committer | 2015-12-07 18:59:31 +0000 | |
commit | b53a50543c55b16fe1a57b103229cc9e8fca7779 (patch) | |
tree | 8dc38c50933913d0d7455033edd76b834d6e549e | |
parent | Represent line numbers with off_t rather than int. This prevents (diff) | |
download | wireguard-openbsd-b53a50543c55b16fe1a57b103229cc9e8fca7779.tar.xz wireguard-openbsd-b53a50543c55b16fe1a57b103229cc9e8fca7779.zip |
strings.h -> string.h to prevent implicit declarations. From Serguey
Parkhomovsky.
-rw-r--r-- | usr.sbin/dvmrpd/packet.c | 4 | ||||
-rw-r--r-- | usr.sbin/dvmrpd/report.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/dvmrpd/packet.c b/usr.sbin/dvmrpd/packet.c index a72b6d03f8f..fa370877200 100644 --- a/usr.sbin/dvmrpd/packet.c +++ b/usr.sbin/dvmrpd/packet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.c,v 1.3 2014/10/25 03:23:49 lteo Exp $ */ +/* $OpenBSD: packet.c,v 1.4 2015/12/07 18:59:31 mmcc Exp $ */ /* * Copyright (c) 2004, 2005, 2006 Esben Norby <norby@openbsd.org> @@ -28,7 +28,7 @@ #include <errno.h> #include <event.h> #include <stdlib.h> -#include <strings.h> +#include <string.h> #include "igmp.h" #include "dvmrpd.h" diff --git a/usr.sbin/dvmrpd/report.c b/usr.sbin/dvmrpd/report.c index 9ce61919f03..b56cda5132d 100644 --- a/usr.sbin/dvmrpd/report.c +++ b/usr.sbin/dvmrpd/report.c @@ -1,4 +1,4 @@ -/* $OpenBSD: report.c,v 1.10 2015/05/05 01:26:37 jsg Exp $ */ +/* $OpenBSD: report.c,v 1.11 2015/12/07 18:59:31 mmcc Exp $ */ /* * Copyright (c) 2005, 2006 Esben Norby <norby@openbsd.org> @@ -23,7 +23,7 @@ #include <arpa/inet.h> #include <stdlib.h> -#include <strings.h> +#include <string.h> #include "igmp.h" #include "dvmrpd.h" |