summaryrefslogtreecommitdiff
path: root/authenticate.c
diff options
context:
space:
mode:
Diffstat (limited to 'authenticate.c')
-rw-r--r--authenticate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/authenticate.c b/authenticate.c
index 9254fb0b..d1ffca62 100644
--- a/authenticate.c
+++ b/authenticate.c
@@ -270,7 +270,7 @@ void auth_client(int fd, char *user, char *challenge)
extern char *password_file;
if (!user || !*user)
- user = "guest";
+ user = "nobody";
if (!(pass=getpassf(password_file)) && !(pass=getenv("RSYNC_PASSWORD"))) {
/* XXX: cyeoh says that getpass is deprecated, because