diff options
author | 2000-10-07 06:59:39 +0000 | |
---|---|---|
committer | 2000-10-07 06:59:39 +0000 | |
commit | 4f73e43ffe7ce339bee3ff4f4557288ef01f49c5 (patch) | |
tree | 87df9129b6f37c9e2b70a043f135e5342bce6192 | |
parent | Merge with EOM 1.14 (diff) | |
download | wireguard-openbsd-4f73e43ffe7ce339bee3ff4f4557288ef01f49c5.tar.xz wireguard-openbsd-4f73e43ffe7ce339bee3ff4f4557288ef01f49c5.zip |
Merge with EOM 1.16
author: itojun
need string.h for netbsd/alpha
-rw-r--r-- | sbin/isakmpd/util.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/isakmpd/util.c b/sbin/isakmpd/util.c index 9128f4477d4..7201d2f21dd 100644 --- a/sbin/isakmpd/util.c +++ b/sbin/isakmpd/util.c @@ -1,5 +1,5 @@ -/* $OpenBSD: util.c,v 1.6 1999/08/05 22:40:37 niklas Exp $ */ -/* $EOM: util.c,v 1.15 1999/08/05 15:00:04 niklas Exp $ */ +/* $OpenBSD: util.c,v 1.7 2000/10/07 06:59:39 niklas Exp $ */ +/* $EOM: util.c,v 1.16 2000/10/04 16:36:56 itojun Exp $ */ /* * Copyright (c) 1998, 1999 Niklas Hallqvist. All rights reserved. @@ -36,6 +36,7 @@ #include <sys/types.h> #include <stdlib.h> +#include <string.h> #include "sysdep.h" |