diff options
author | Mats O Jansson <maja@cvs.openbsd.org> | 1997-07-26 11:59:04 +0000 |
---|---|---|
committer | Mats O Jansson <maja@cvs.openbsd.org> | 1997-07-26 11:59:04 +0000 |
commit | bbe1343db47d7665ec665b69d2a6cfd8e37f8542 (patch) | |
tree | 31b8b97ec3b22641b5d36effd75914b0ad205568 /usr.sbin/ypserv | |
parent | dab10f39cefe111426c05ffb0fe973382a2c723a (diff) |
bug killed in NetBSD by thorpej.
Diffstat (limited to 'usr.sbin/ypserv')
-rw-r--r-- | usr.sbin/ypserv/yptest/yptest.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/ypserv/yptest/yptest.c b/usr.sbin/ypserv/yptest/yptest.c index 5bd286fe637..f34d413f617 100644 --- a/usr.sbin/ypserv/yptest/yptest.c +++ b/usr.sbin/ypserv/yptest/yptest.c @@ -1,4 +1,4 @@ -/* $OpenBSD: yptest.c,v 1.5 1996/06/26 21:26:40 maja Exp $ */ +/* $OpenBSD: yptest.c,v 1.6 1997/07/26 11:59:03 maja Exp $ */ /* * Copyright (c) 1994 Mats O Jansson <moj@stacken.kth.se> @@ -32,7 +32,7 @@ */ #ifndef LINT -static char rcsid[] = "$OpenBSD: yptest.c,v 1.5 1996/06/26 21:26:40 maja Exp $"; +static char rcsid[] = "$OpenBSD: yptest.c,v 1.6 1997/07/26 11:59:03 maja Exp $"; #endif #include <stdio.h> @@ -45,8 +45,8 @@ static char rcsid[] = "$OpenBSD: yptest.c,v 1.5 1996/06/26 21:26:40 maja Exp $"; static int yptest_foreach(status,key,keylen,val,vallen,data) -int status,keylen,vallen,*data; -char *key,*val; +int status,keylen,vallen; +char *key,*val,*data; { if (status == 2) return(0); |