X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/505c7ea2bc0720a44a17c3076dec3e0b87e4ab93..67684d038de4c18431af0ccc17f55efbf4f20eb8:/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;