summaryrefslogtreecommitdiff
path: root/nss/digits_dots.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-10-28 00:45:40 +0000
committerUlrich Drepper <drepper@redhat.com>2000-10-28 00:45:40 +0000
commit0bb258e350ca7864a1db31cb89c4a82602ec3587 (patch)
treeca78f0d6f9a17f5c95dfcb50c3c87e0b0efcf227 /nss/digits_dots.c
parent9f6c1fc4947e0b6d007cff159166bc0373386c61 (diff)
Update.
* posix/regex.c (gettext): Use correct translation domain for glibc. * argp/argp-parse.c: Use __dcgettext instead of dcgettext for glibc. * argp/argp-help.c: Likewise. * inet/getnameinfo.c (getnameinfo): Use __snprintf instead of snprintf. * inet/rexec.c (rexec_af): Use __snprintf instead of snprintf. * misc/regexp.c (__step): Use __regexec instead of regexec. (__advance): Likewise. * nss/digits_dots.c: Use __inet_aton instead of inet_aton. * misc/daemon.c (daemon): Use __fork instead of fork.
Diffstat (limited to 'nss/digits_dots.c')
-rw-r--r--nss/digits_dots.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/digits_dots.c b/nss/digits_dots.c
index 045bf8a661..a439207191 100644
--- a/nss/digits_dots.c
+++ b/nss/digits_dots.c
@@ -126,7 +126,7 @@
255.255.255.255? The test below will succeed
spuriously... ??? */
if (af == AF_INET)
- ok = inet_aton (name, (struct in_addr *) host_addr);
+ ok = __inet_aton (name, (struct in_addr *) host_addr);
else
{
assert (af == AF_INET6);