Code clean up:

Changed type of pid from int to pid_t. (Missed one!)
This commit is contained in:
James Raynard 1996-06-04 17:35:15 +00:00
parent 6cde43480c
commit ccbcef60f5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16106

View File

@ -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;