diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2005-10-19 13:07:59 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2005-10-19 13:07:59 +0000 |
commit | a52d64384bb7d6cbec45f6438aae58c514bb1c63 (patch) | |
tree | ffb45b5580951c0bdeb775457866c430add43399 /usr.sbin | |
parent | 90117bd480f49dc64613a7265ad82531cfb37135 (diff) |
use string.h; ok claudio@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/ospfd/lsack.c | 4 | ||||
-rw-r--r-- | usr.sbin/ospfd/lsupdate.c | 4 | ||||
-rw-r--r-- | usr.sbin/ospfd/packet.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/ospfd/lsack.c b/usr.sbin/ospfd/lsack.c index eb4e798e8ad..bccdf4a54dd 100644 --- a/usr.sbin/ospfd/lsack.c +++ b/usr.sbin/ospfd/lsack.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lsack.c,v 1.13 2005/05/27 02:24:42 norby Exp $ */ +/* $OpenBSD: lsack.c,v 1.14 2005/10/19 13:07:58 stevesk Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -24,7 +24,7 @@ #include <arpa/inet.h> #include <stdlib.h> -#include <strings.h> +#include <string.h> #include "ospfd.h" #include "ospf.h" diff --git a/usr.sbin/ospfd/lsupdate.c b/usr.sbin/ospfd/lsupdate.c index 184c1174523..e0206d8ff04 100644 --- a/usr.sbin/ospfd/lsupdate.c +++ b/usr.sbin/ospfd/lsupdate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lsupdate.c,v 1.15 2005/10/13 09:57:37 claudio Exp $ */ +/* $OpenBSD: lsupdate.c,v 1.16 2005/10/19 13:07:58 stevesk Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -23,7 +23,7 @@ #include <arpa/inet.h> #include <stdlib.h> -#include <strings.h> +#include <string.h> #include "ospf.h" #include "ospfd.h" diff --git a/usr.sbin/ospfd/packet.c b/usr.sbin/ospfd/packet.c index 0326a65981c..e07c1b1730e 100644 --- a/usr.sbin/ospfd/packet.c +++ b/usr.sbin/ospfd/packet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: packet.c,v 1.14 2005/10/18 09:32:16 claudio Exp $ */ +/* $OpenBSD: packet.c,v 1.15 2005/10/19 13:07:58 stevesk Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -29,7 +29,7 @@ #include <event.h> #include <md5.h> #include <stdlib.h> -#include <strings.h> +#include <string.h> #include "ospfd.h" #include "ospf.h" |