From: Roland McGrath Date: Thu, 8 Aug 2002 01:32:48 +0000 (+0000) Subject: 2002-08-07 Roland McGrath X-Git-Tag: upstream/2.30~21470 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a54ad77a156e9df608c7964a4a1ef042df6b9d4;p=external%2Fglibc.git 2002-08-07 Roland McGrath * inet/getnetgrent_r.c (endnetgrent, __getnetgrent_r): Actually call the static symbols added in the last change (doofus is me). --- diff --git a/inet/getnetgrent_r.c b/inet/getnetgrent_r.c index 92a8b30..a0fb6f4 100644 --- a/inet/getnetgrent_r.c +++ b/inet/getnetgrent_r.c @@ -186,7 +186,7 @@ endnetgrent (void) { __libc_lock_lock (lock); - __internal_endnetgrent (&dataset); + internal_endnetgrent (&dataset); __libc_lock_unlock (lock); } @@ -285,8 +285,8 @@ __getnetgrent_r (char **hostp, char **userp, char **domainp, __libc_lock_lock (lock); - status = __internal_getnetgrent_r (hostp, userp, domainp, &dataset, - buffer, buflen, &errno); + status = internal_getnetgrent_r (hostp, userp, domainp, &dataset, + buffer, buflen, &errno); __libc_lock_unlock (lock);