summaryrefslogtreecommitdiffstats
path: root/source/lib/replace.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2006-01-24 16:58:48 +0000
committerGerald Carter <jerry@samba.org>2006-01-24 16:58:48 +0000
commit7d04f4382550fdc979f1a55d77cda536c782dd80 (patch)
tree88fb959f094e3363c21072888d9fb551259ade43 /source/lib/replace.c
parent167a7756b7fb55edf7b88d6282feffd7434aee59 (diff)
downloadsamba-7d04f4382550fdc979f1a55d77cda536c782dd80.tar.gz
samba-7d04f4382550fdc979f1a55d77cda536c782dd80.tar.xz
samba-7d04f4382550fdc979f1a55d77cda536c782dd80.zip
r13109: 3.0.21b chnges from the 3.0 tree (round #2)
Diffstat (limited to 'source/lib/replace.c')
-rw-r--r--source/lib/replace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/replace.c b/source/lib/replace.c
index 57ee6ea11e6..120fd3a4688 100644
--- a/source/lib/replace.c
+++ b/source/lib/replace.c
@@ -390,7 +390,7 @@ char *rep_inet_ntoa(struct in_addr ip)
if (isdigit(c))
c -= '0';
else if (isalpha(c))
- c -= isupper(c) ? 'A' - 10 : 'a' - 10;
+ c -= isupper_ascii(c) ? 'A' - 10 : 'a' - 10;
else
break;
if (c >= base)