diff options
author | James Raynard <jraynard@FreeBSD.org> | 1996-06-04 17:35:15 +0000 |
---|---|---|
committer | James Raynard <jraynard@FreeBSD.org> | 1996-06-04 17:35:15 +0000 |
commit | ccbcef60f5398d103aa40055a030cf684bdb85d6 (patch) | |
tree | daeb2f3f3bfa478b871f9f1b6fa2ac07299dd5b1 /lib | |
parent | 6cde43480ce3eda53818476b14f8e57517af0653 (diff) |
Code clean up:
Changed type of pid from int to pid_t. (Missed one!)
Notes
Notes:
svn path=/head/; revision=16106
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/yp/yplib.c | 5 |
1 files 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 <sys/param.h> @@ -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; |