diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-08-29 18:57:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-08-29 18:57:19 +0000 |
commit | 79c215bbdf655d5e8b7291acc4eefac3ce2cb3b8 (patch) | |
tree | 33a528659d60593c65d0dd8e1a981cb99a267631 /lib/libc/rpc/pmap_clnt.c | |
parent | 204291d07ddd6a878cc933c6796f25501efb5fc8 (diff) |
change pmap_set() protocol to u_int, similar to solaris; ref: casper
Diffstat (limited to 'lib/libc/rpc/pmap_clnt.c')
-rw-r--r-- | lib/libc/rpc/pmap_clnt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/pmap_clnt.c b/lib/libc/rpc/pmap_clnt.c index 0c7687b7c61..3cb3cafdfb6 100644 --- a/lib/libc/rpc/pmap_clnt.c +++ b/lib/libc/rpc/pmap_clnt.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: pmap_clnt.c,v 1.8 1997/09/22 05:11:08 millert Exp $"; +static char *rcsid = "$OpenBSD: pmap_clnt.c,v 1.9 1998/08/29 18:57:17 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -57,7 +57,7 @@ bool_t pmap_set(program, version, protocol, port) u_long program; u_long version; - int protocol; + u_int protocol; u_short port; { struct sockaddr_in myaddress; |