diff options
author | alfred <alfred@FreeBSD.org> | 2002-03-22 19:19:32 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-03-22 19:19:32 +0000 |
commit | a28390a9699ff81c325c4e3c5bddb292c59b36ab (patch) | |
tree | 2a5b23c5d0c8fc48cd6b7f0a4a61f08df1bbd649 /include/rpc | |
parent | e65c986e461c8b7fd9d97035af4f8aab114ccb7a (diff) | |
download | FreeBSD-src-a28390a9699ff81c325c4e3c5bddb292c59b36ab.zip FreeBSD-src-a28390a9699ff81c325c4e3c5bddb292c59b36ab.tar.gz |
Constify the first arg to callrpc(3).
Diffstat (limited to 'include/rpc')
-rw-r--r-- | include/rpc/rpc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rpc/rpc.h b/include/rpc/rpc.h index e16b4fd..b770d75 100644 --- a/include/rpc/rpc.h +++ b/include/rpc/rpc.h @@ -83,7 +83,7 @@ extern int get_myaddress __P((struct sockaddr_in *)); extern int bindresvport __P((int, struct sockaddr_in *)); extern int registerrpc __P((int, int, int, char *(*) __P((char [UDPMSGSIZE])), xdrproc_t, xdrproc_t)); -extern int callrpc __P((char *, int, int, int, xdrproc_t, void *, +extern int callrpc __P((const char *, int, int, int, xdrproc_t, void *, xdrproc_t , void *)); extern int getrpcport __P((char *, int, int, int)); |