X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/5d78a10232490229a5e157bf8e87b96404e6a8fd..6cd7888e46fb7611668c981ff8193c5f3d16d8a6:/authenticate.c diff --git a/authenticate.c b/authenticate.c index 40582201..2b981195 100644 --- a/authenticate.c +++ b/authenticate.c @@ -272,6 +272,9 @@ void auth_client(int fd, char *user, char *challenge) if (!user || !*user) return; if (!(pass=getpassf(password_file)) && !(pass=getenv("RSYNC_PASSWORD"))) { + /* XXX: cyeoh says that getpass is deprecated, because + it may return a truncated password on some systems, + and it is not in the LSB. */ pass = getpass("Password: "); }