summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2016-02-26 23:25:21 +0000
committerpfg <pfg@FreeBSD.org>2016-02-26 23:25:21 +0000
commitd7f6887db1d8636b06229571ab22520a61fd1396 (patch)
treee4fbb28288fbd06ba283ad5b183990ebce1ae791 /lib
parent05d67f014967e279a885ee28f306a4292b4b2762 (diff)
downloadFreeBSD-src-d7f6887db1d8636b06229571ab22520a61fd1396.zip
FreeBSD-src-d7f6887db1d8636b06229571ab22520a61fd1396.tar.gz
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')
-rw-r--r--lib/libc/rpc/getrpcent.34
-rw-r--r--lib/libc/rpc/getrpcent.c2
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 72c5da8..2bfe1ab 100644
--- a/lib/libc/rpc/getrpcent.c
+++ b/lib/libc/rpc/getrpcent.c
@@ -969,7 +969,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;
OpenPOWER on IntegriCloud