aboutsummaryrefslogtreecommitdiffstats
path: root/access.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-09-24 16:50:07 +0000
committerWayne Davison <wayned@samba.org>2004-09-24 16:50:07 +0000
commitbe7cf82299004d803d985b5ec9bec26b2562ec85 (patch)
treeb49b54ffb20e8605af0faa667ed53bdf80cf526b /access.c
parentfde045cd778e6b1f6ecb6189ed869e2a34195593 (diff)
downloadandroid_external_rsync-be7cf82299004d803d985b5ec9bec26b2562ec85.tar.gz
android_external_rsync-be7cf82299004d803d985b5ec9bec26b2562ec85.tar.bz2
android_external_rsync-be7cf82299004d803d985b5ec9bec26b2562ec85.zip
- Make sure that match_address() always restores the "tok" string,
even on error. - Turned the various FERROR messages into (the more proper) FLOG.
Diffstat (limited to 'access.c')
-rw-r--r--access.c31
1 files changed, 18 insertions, 13 deletions
diff --git a/access.c b/access.c
index 1dc73aed..cba3cc59 100644
--- a/access.c
+++ b/access.c
@@ -88,9 +88,13 @@ static int match_address(char *addr, char *tok)
/* Fail quietly if tok is a hostname (not an address) */
if (strspn(tok, ".0123456789") != len
#ifdef INET6
- && !strchr(tok, ':')
+ && strchr(tok, ':') == NULL
#endif
- ) return 0;
+ ) {
+ if (p)
+ *p = '/';
+ return 0;
+ }
memset(&hints, 0, sizeof(hints));
hints.ai_family = PF_UNSPEC;
@@ -99,17 +103,18 @@ static int match_address(char *addr, char *tok)
hints.ai_flags = AI_NUMERICHOST;
#endif
- gai = getaddrinfo(addr, NULL, &hints, &resa);
- if (gai) return 0;
+ if (getaddrinfo(addr, NULL, &hints, &resa) != 0) {
+ if (p)
+ *p = '/';
+ return 0;
+ }
gai = getaddrinfo(tok, NULL, &hints, &rest);
if (p)
*p++ = '/';
- if (gai) {
- rprintf(FERROR,
- "error matching address %s: %s\n",
- tok,
- gai_strerror(gai));
+ if (gai != 0) {
+ rprintf(FLOG, "error matching address %s: %s\n",
+ tok, gai_strerror(gai));
freeaddrinfo(resa);
return 0;
}
@@ -152,7 +157,7 @@ static int match_address(char *addr, char *tok)
}
#endif
default:
- rprintf(FERROR,"unknown family %u\n", rest->ai_family);
+ rprintf(FLOG, "unknown family %u\n", rest->ai_family);
ret = 0;
goto out;
}
@@ -169,14 +174,14 @@ static int match_address(char *addr, char *tok)
#ifdef HAVE_STRTOL
bits = strtol(p, &ep, 10);
if (!*p || *ep) {
- rprintf(FERROR,"malformed mask in %s\n", tok);
+ rprintf(FLOG, "malformed mask in %s\n", tok);
ret = 0;
goto out;
}
#else
for (pp = (unsigned char *)p; *pp; pp++) {
if (!isascii(*pp) || !isdigit(*pp)) {
- rprintf(FERROR,"malformed mask in %s\n", tok);
+ rprintf(FLOG, "malformed mask in %s\n", tok);
ret = 0;
goto out;
}
@@ -188,7 +193,7 @@ static int match_address(char *addr, char *tok)
goto out;
}
if (bits < 0 || bits > (addrlen << 3)) {
- rprintf(FERROR,"malformed mask in %s\n", tok);
+ rprintf(FLOG, "malformed mask in %s\n", tok);
ret = 0;
goto out;
}