From ec9b1889c219f7bf25057fbe0b26c6876ee8ed55 Mon Sep 17 00:00:00 2001 From: ngie Date: Sat, 3 Dec 2016 18:56:28 +0000 Subject: [PATCH] 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 git-svn-id: svn://svn.freebsd.org/base/stable/10@309502 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- include/rpc/rpcent.h | 2 +- lib/libc/rpc/getrpcent.3 | 4 ++-- lib/libc/rpc/getrpcent.c | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/rpc/rpcent.h b/include/rpc/rpcent.h index 405ba6780..c1650fa4c 100644 --- a/include/rpc/rpcent.h +++ b/include/rpc/rpcent.h @@ -56,7 +56,7 @@ __BEGIN_DECLS * These interfaces are currently implemented through nsswitch and are * MT-safe. */ -extern struct rpcent *getrpcbyname(char *); +extern struct rpcent *getrpcbyname(const char *); extern struct rpcent *getrpcbynumber(int); extern struct rpcent *getrpcent(void); extern void setrpcent(int); diff --git a/lib/libc/rpc/getrpcent.3 b/lib/libc/rpc/getrpcent.3 index 1a999eb3f..e36d31c4a 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 3f80522fe..8e74737a4 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; -- 2.45.0