diff options
author | ngie <ngie@FreeBSD.org> | 2016-12-03 18:56:28 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2016-12-03 18:56:28 +0000 |
commit | 56b2b6296d72355f285da621fe6f57a5022d1575 (patch) | |
tree | eecc1b2ca18cc50d028bddafe12613206ef00ec8 /lib/libc | |
parent | 55aeed8456730d362f96cc797e2911207d07a6b2 (diff) | |
download | FreeBSD-src-56b2b6296d72355f285da621fe6f57a5022d1575.zip FreeBSD-src-56b2b6296d72355f285da621fe6f57a5022d1575.tar.gz |
MFC r296133:
r296133 (by pfg):
RPC: update the getrpcbyname() definition to include a const qualifier.
Add const qualifier making getrpcbyname() and getrpcbyname_r()
prototypes match those used in latest Sun RPC code (TI-RPC 2.3).
Obtained from: NetBSD
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/rpc/getrpcent.3 | 4 | ||||
-rw-r--r-- | lib/libc/rpc/getrpcent.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/rpc/getrpcent.3 b/lib/libc/rpc/getrpcent.3 index 1a999eb..e36d31c 100644 --- a/lib/libc/rpc/getrpcent.3 +++ b/lib/libc/rpc/getrpcent.3 @@ -2,7 +2,7 @@ .\" $NetBSD: getrpcent.3,v 1.6 1998/02/05 18:49:06 perry Exp $ .\" $FreeBSD$ .\" -.Dd December 14, 1987 +.Dd February 26, 2016 .Dt GETRPCENT 3 .Os .Sh NAME @@ -19,7 +19,7 @@ .Ft struct rpcent * .Fn getrpcent void .Ft struct rpcent * -.Fn getrpcbyname "char *name" +.Fn getrpcbyname "const char *name" .Ft struct rpcent * .Fn getrpcbynumber "int number" .Ft void diff --git a/lib/libc/rpc/getrpcent.c b/lib/libc/rpc/getrpcent.c index 3f80522..8e74737 100644 --- a/lib/libc/rpc/getrpcent.c +++ b/lib/libc/rpc/getrpcent.c @@ -971,7 +971,7 @@ getrpc(int (*fn)(union key, struct rpcent *, char *, size_t, struct rpcent **), } struct rpcent * -getrpcbyname(char *name) +getrpcbyname(const char *name) { union key key; |