Changed "./0123456789" to just ".0123456789".
[rsync/rsync.git] / access.c
index bd07567..25a0680 100644 (file)
--- a/access.c
+++ b/access.c
@@ -86,7 +86,7 @@ static int match_address(char *addr, char *tok)
                len = strlen(tok);
 
        /* Fail quietly if tok is a hostname (not an address) */
-       if (strspn(tok, "./0123456789") != len
+       if (strspn(tok, ".0123456789") != len
 #ifdef INET6
         && !strchr(tok, ':')
 #endif