summaryrefslogtreecommitdiff
path: root/authenticate.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-04-01 18:05:40 +0000
committerWayne Davison <wayned@samba.org>2004-04-01 18:05:40 +0000
commit4b2f6a7c377d4c52046a3147bcf326751486fd28 (patch)
treeac0c4f479d8edd10b480f22b9ecb3bd1bfbe0477 /authenticate.c
parenta8726d2a0695073a6321ec030eebb2af8709a21d (diff)
downloadrsync-4b2f6a7c377d4c52046a3147bcf326751486fd28.tar.gz
Decided to use "nobody" instead of "guest".
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