X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/505c7ea2bc0720a44a17c3076dec3e0b87e4ab93..b4235b3165fda2c09072ed830de9a13db5e81b41:/access.c diff --git a/access.c b/access.c index f1763432..050e8cc4 100644 --- a/access.c +++ b/access.c @@ -68,6 +68,7 @@ static int match_address(char *addr, char *tok) mask = ntohl(mask); } else { int bits = atoi(p+1); + if (bits == 0) return 1; if (bits <= 0 || bits > 32) { rprintf(FERROR,"malformed mask in %s\n", tok); return 0;