diff options
author | fenner <fenner@FreeBSD.org> | 2002-09-16 21:45:37 +0000 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 2002-09-16 21:45:37 +0000 |
commit | 06e2d469685d681eb66dc7bd7e5f88f0a01e6e7a (patch) | |
tree | 6907e288a071d65debfd1a02d6d5ccc6dfbcd89b /lib/libc | |
parent | 0f0a53d15f0152d40095a01108f9cfb8027bd9b3 (diff) | |
download | FreeBSD-src-06e2d469685d681eb66dc7bd7e5f88f0a01e6e7a.zip FreeBSD-src-06e2d469685d681eb66dc7bd7e5f88f0a01e6e7a.tar.gz |
Fix documentation of clnt_control()'s CL{GET|SET}_{VERS|XID} to
reflect that they actually require a u_int32_t *, which is not
necessarily the same as an unsigned long *.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/rpc/rpc_clnt_create.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/rpc/rpc_clnt_create.3 b/lib/libc/rpc/rpc_clnt_create.3 index e5271ea..e6e9636 100644 --- a/lib/libc/rpc/rpc_clnt_create.3 +++ b/lib/libc/rpc/rpc_clnt_create.3 @@ -104,10 +104,10 @@ Set the timeout parameter to 0 for batching calls. .It Dv CLGET_FD Ta "int *" Ta "get fd from handle" .It Dv CLSET_FD_CLOSE Ta "void" Ta "close fd on destroy" .It Dv CLSET_FD_NCLOSE Ta void Ta "don't close fd on destroy" -.It Dv CLGET_VERS Ta "unsigned long *" Ta "get RPC program version" -.It Dv CLSET_VERS Ta "unsigned long *" Ta "set RPC program version" -.It Dv CLGET_XID Ta "unsigned long *" Ta "get XID of previous call" -.It Dv CLSET_XID Ta "unsigned long *" Ta "set XID of next call" +.It Dv CLGET_VERS Ta "u_int32_t *" Ta "get RPC program version" +.It Dv CLSET_VERS Ta "u_int32_t *" Ta "set RPC program version" +.It Dv CLGET_XID Ta "u_int32_t *" Ta "get XID of previous call" +.It Dv CLSET_XID Ta "u_int32_t *" Ta "set XID of next call" .El .Pp The following operations are valid for connectionless transports only: |