From 7c85cf484b2da0fef648209a6d144727a4cb295f Mon Sep 17 00:00:00 2001 From: jraynard Date: Tue, 4 Jun 1996 17:35:15 +0000 Subject: [PATCH] Code clean up: Changed type of pid from int to pid_t. (Missed one!) --- lib/libc/yp/yplib.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/libc/yp/yplib.c b/lib/libc/yp/yplib.c index c8d99856d411..955439460ea1 100644 --- a/lib/libc/yp/yplib.c +++ b/lib/libc/yp/yplib.c @@ -28,7 +28,7 @@ */ #ifndef LINT -static char *rcsid = "$Id: yplib.c,v 1.20 1996/06/01 05:08:31 wpaul Exp $"; +static char *rcsid = "$Id: yplib.c,v 1.21 1996/06/03 13:19:10 jraynard Exp $"; #endif #include @@ -217,7 +217,8 @@ _yp_dobind(dom, ypdb) struct ypbind_resp ypbr; struct timeval tv; struct sockaddr_in clnt_sin; - int clnt_sock, lfd, fd, gpid; + int clnt_sock, lfd, fd; + pid_t gpid; CLIENT *client; int new = 0, r; int retries = 0;