From 07bbf922670cce83c0b54f28ad43473d044cae5e Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 12 Apr 2008 01:34:04 +0000 Subject: Functions should be either exported in public .h files and marked with libc_hidden_proto/def(), or not be exported in .h files and be hidden (or even static if possible). We have five functions which violate this. Fixing: netdb.h: export ruserpass() rpc/rpc.h: export xdr_accepted_reply() and xdr_rejected_reply() make inet_ntoa_r static function (it is not exported in any .h file) make _time_tzset hidden function (it is not exported in any .h file) --- include/netdb.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/netdb.h') diff --git a/include/netdb.h b/include/netdb.h index fe3da8239..bcae666e6 100644 --- a/include/netdb.h +++ b/include/netdb.h @@ -444,6 +444,11 @@ extern int getnetgrent_r (char **__restrict __hostp, #endif /* misc */ +/* ruserpass - remote password check. + This function also exists in glibc but is undocumented */ +extern int ruserpass(const char *host, const char **aname, const char **apass); + + #ifdef __USE_BSD /* Call `rshd' at port RPORT on remote machine *AHOST to execute CMD. The local user is LOCUSER, on the remote machine the command is -- cgit v1.2.3