summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-08-24 18:30:34 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-08-24 18:30:34 +0000
commit56b56bfdbddff54ff073ff0beaf65bd9efa0ebd8 (patch)
tree7a3e4fc706872d085bdab154c4b5edeb8d1f24df /sbin
parentd17fbde54f7aea90aa0f18587bf874ee4f649ad6 (diff)
#include <string.h> for strlen().
Diffstat (limited to 'sbin')
-rw-r--r--sbin/ipsec/photurisd/errlog.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sbin/ipsec/photurisd/errlog.c b/sbin/ipsec/photurisd/errlog.c
index ed85bc840c4..174bbf3e352 100644
--- a/sbin/ipsec/photurisd/errlog.c
+++ b/sbin/ipsec/photurisd/errlog.c
@@ -31,11 +31,14 @@
*/
/*
- * $Header: /cvs/OpenBSD/src/sbin/ipsec/photurisd/Attic/errlog.c,v 1.3 1997/07/25 19:13:20 mickey Exp $
+ * $Header: /cvs/OpenBSD/src/sbin/ipsec/photurisd/Attic/errlog.c,v 1.4 1997/08/24 18:30:33 millert Exp $
*
- * $Author: mickey $
+ * $Author: millert $
*
* $Log: errlog.c,v $
+ * Revision 1.4 1997/08/24 18:30:33 millert
+ * #include <string.h> for strlen().
+ *
* Revision 1.3 1997/07/25 19:13:20 mickey
* #if __STDC__ --> #ifdef __STDC__
*
@@ -52,7 +55,7 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: errlog.c,v 1.3 1997/07/25 19:13:20 mickey Exp $";
+static char rcsid[] = "$Id: errlog.c,v 1.4 1997/08/24 18:30:33 millert Exp $";
#endif
#define _ERRLOG_C_
@@ -64,7 +67,7 @@ static char rcsid[] = "$Id: errlog.c,v 1.3 1997/07/25 19:13:20 mickey Exp $";
#else
#include <varargs.h>
#endif
-#include <stdio.h>
+#include <string.h>
#include <syslog.h>
#include <sys/types.h>
#include <errno.h>