diff options
author | 2003-06-25 21:44:16 +0000 | |
---|---|---|
committer | 2003-06-25 21:44:16 +0000 | |
commit | ddcf4bcd1905cd1f68e2773611826b298997bee2 (patch) | |
tree | 3779eb63d566b7552dfb4425a51326f9f002389f | |
parent | o use S_ISDIR instead of doing it by hand (diff) | |
download | wireguard-openbsd-ddcf4bcd1905cd1f68e2773611826b298997bee2.tar.xz wireguard-openbsd-ddcf4bcd1905cd1f68e2773611826b298997bee2.zip |
protos
-rw-r--r-- | usr.sbin/ypset/ypset.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ypset/ypset.c b/usr.sbin/ypset/ypset.c index a872c649399..9d116294472 100644 --- a/usr.sbin/ypset/ypset.c +++ b/usr.sbin/ypset/ypset.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ypset.c,v 1.8 2003/06/02 04:00:17 deraadt Exp $ */ +/* $OpenBSD: ypset.c,v 1.9 2003/06/25 21:44:16 deraadt Exp $ */ /* $NetBSD: ypset.c,v 1.8 1996/05/13 02:46:33 thorpej Exp $ */ /* @@ -28,7 +28,7 @@ */ #ifndef LINT -static char rcsid[] = "$OpenBSD: ypset.c,v 1.8 2003/06/02 04:00:17 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: ypset.c,v 1.9 2003/06/25 21:44:16 deraadt Exp $"; #endif #include <sys/param.h> @@ -45,7 +45,7 @@ static char rcsid[] = "$OpenBSD: ypset.c,v 1.8 2003/06/02 04:00:17 deraadt Exp $ #include <rpcsvc/ypclnt.h> #include <arpa/inet.h> -extern bool_t xdr_domainname(); +extern bool_t xdr_domainname(XDR *, domainname *); void usage(void) |