diff options
author | 2004-01-16 11:14:43 +0000 | |
---|---|---|
committer | 2004-01-16 11:14:43 +0000 | |
commit | a9e0de78e3c1593b34fcbe5fc52b657cf2659697 (patch) | |
tree | b9339421d6f0b91af60c4ae3016f21d7a41de27d | |
parent | Added -v option. Enables logging of successful exchange completion. (diff) | |
download | wireguard-openbsd-a9e0de78e3c1593b34fcbe5fc52b657cf2659697.tar.xz wireguard-openbsd-a9e0de78e3c1593b34fcbe5fc52b657cf2659697.zip |
missing #include
-rw-r--r-- | usr.sbin/bgpd/rde_prefix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/bgpd/rde_prefix.c b/usr.sbin/bgpd/rde_prefix.c index b299efc22b4..c85c3fcb755 100644 --- a/usr.sbin/bgpd/rde_prefix.c +++ b/usr.sbin/bgpd/rde_prefix.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rde_prefix.c,v 1.7 2004/01/11 21:47:20 claudio Exp $ */ +/* $OpenBSD: rde_prefix.c,v 1.8 2004/01/16 11:14:43 henning Exp $ */ /* * Copyright (c) 2003, 2004 Claudio Jeker <claudio@openbsd.org> @@ -21,6 +21,7 @@ #include <errno.h> #include <stdlib.h> +#include <string.h> #include "bgpd.h" #include "ensure.h" |