diff options
author | 2015-12-05 06:45:19 +0000 | |
---|---|---|
committer | 2015-12-05 06:45:19 +0000 | |
commit | 85584260dbc33a2e71b005289b6dd8667cc9f88c (patch) | |
tree | f53d2492d741e89cf0824b197b4c936e18e9b56a | |
parent | strings.h -> string.h to prevent an implicit declaration warning. Also (diff) | |
download | wireguard-openbsd-85584260dbc33a2e71b005289b6dd8667cc9f88c.tar.xz wireguard-openbsd-85584260dbc33a2e71b005289b6dd8667cc9f88c.zip |
strings.h -> string.h to prevent an implicit declaration warning.
-rw-r--r-- | usr.sbin/ospf6d/rde_spf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospf6d/rde_spf.c b/usr.sbin/ospf6d/rde_spf.c index 67747bab797..4e2e554447a 100644 --- a/usr.sbin/ospf6d/rde_spf.c +++ b/usr.sbin/ospf6d/rde_spf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde_spf.c,v 1.24 2012/09/18 18:58:57 bluhm Exp $ */ +/* $OpenBSD: rde_spf.c,v 1.25 2015/12/05 06:45:19 mmcc Exp $ */ /* * Copyright (c) 2005 Esben Norby <norby@openbsd.org> @@ -22,7 +22,7 @@ #include <arpa/inet.h> #include <err.h> #include <stdlib.h> -#include <strings.h> +#include <string.h> #include "ospf6d.h" #include "ospf6.h" |