summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-08-24 18:31:26 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-08-24 18:31:26 +0000
commitf235aa0fc38e77790af0027e0eb7b3c6440ce391 (patch)
treea5bdb24442dc8a5545b8bef3ec7bde4b66342776
parent56b56bfdbddff54ff073ff0beaf65bd9efa0ebd8 (diff)
#include <string.h> for strlen() and strcpy().
-rw-r--r--sbin/ipsec/startkey/startkey.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/ipsec/startkey/startkey.c b/sbin/ipsec/startkey/startkey.c
index 3265268de7e..22882804c97 100644
--- a/sbin/ipsec/startkey/startkey.c
+++ b/sbin/ipsec/startkey/startkey.c
@@ -31,11 +31,12 @@
*/
#ifndef lint
-static char rcsid[] = "$Id: startkey.c,v 1.2 1997/07/22 11:18:26 provos Exp $";
+static char rcsid[] = "$Id: startkey.c,v 1.3 1997/08/24 18:31:25 millert Exp $";
#endif
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/socket.h>