Commit fd2dd2aa authored by Andrew Tridgell's avatar Andrew Tridgell

better error msg for "invalid uid" and "invalid gid"

parent 82ed9106
...@@ -196,7 +196,7 @@ static int rsync_module(int fd, int i) ...@@ -196,7 +196,7 @@ static int rsync_module(int fd, int i)
if (!name_to_uid(p, &uid)) { if (!name_to_uid(p, &uid)) {
if (!isdigit(*p)) { if (!isdigit(*p)) {
rprintf(FERROR,"Invalid uid %s\n", p); rprintf(FERROR,"Invalid uid %s\n", p);
io_printf(fd,"@ERROR: invalid uid\n"); io_printf(fd,"@ERROR: invalid uid %s\n", p);
return -1; return -1;
} }
uid = atoi(p); uid = atoi(p);
...@@ -206,7 +206,7 @@ static int rsync_module(int fd, int i) ...@@ -206,7 +206,7 @@ static int rsync_module(int fd, int i)
if (!name_to_gid(p, &gid)) { if (!name_to_gid(p, &gid)) {
if (!isdigit(*p)) { if (!isdigit(*p)) {
rprintf(FERROR,"Invalid gid %s\n", p); rprintf(FERROR,"Invalid gid %s\n", p);
io_printf(fd,"@ERROR: invalid gid\n"); io_printf(fd,"@ERROR: invalid gid %s\n", p);
return -1; return -1;
} }
gid = atoi(p); gid = atoi(p);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment