diff options
| author | Wayne Davison <wayned@samba.org> | 2004-04-01 18:05:40 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2004-04-01 18:05:40 +0000 |
| commit | 4b2f6a7c377d4c52046a3147bcf326751486fd28 (patch) | |
| tree | ac0c4f479d8edd10b480f22b9ecb3bd1bfbe0477 /authenticate.c | |
| parent | a8726d2a0695073a6321ec030eebb2af8709a21d (diff) | |
| download | android_external_rsync-4b2f6a7c377d4c52046a3147bcf326751486fd28.tar.gz android_external_rsync-4b2f6a7c377d4c52046a3147bcf326751486fd28.tar.bz2 android_external_rsync-4b2f6a7c377d4c52046a3147bcf326751486fd28.zip | |
Decided to use "nobody" instead of "guest".
Diffstat (limited to 'authenticate.c')
| -rw-r--r-- | authenticate.c | 2 |
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 |
