X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/f74a3d813be237df00fe9fb0258cf248572c67c5..3f0211b63a6cdc4a2cecfd2a0dffeba172c86a47:/authenticate.c diff --git a/authenticate.c b/authenticate.c index 8991ac43..dd74b684 100644 --- a/authenticate.c +++ b/authenticate.c @@ -163,34 +163,31 @@ static const char *getpassf(const char *filename) return NULL; if ((fd = open(filename,O_RDONLY)) < 0) { - rsyserr(FERROR, errno, "could not open password file \"%s\"", + rsyserr(FWARNING, errno, "could not open password file \"%s\"", filename); if (envpw) - rprintf(FERROR, "falling back to RSYNC_PASSWORD environment variable.\n"); + rprintf(FINFO, "falling back to RSYNC_PASSWORD environment variable.\n"); return NULL; } if (do_stat(filename, &st) == -1) { - rsyserr(FERROR, errno, "stat(%s)", filename); + rsyserr(FWARNING, errno, "stat(%s)", filename); ok = 0; } else if ((st.st_mode & 06) != 0) { - rprintf(FERROR,"password file must not be other-accessible\n"); + rprintf(FWARNING, "password file must not be other-accessible\n"); ok = 0; } else if (MY_UID() == 0 && st.st_uid != 0) { - rprintf(FERROR,"password file must be owned by root when running as root\n"); + rprintf(FWARNING, "password file must be owned by root when running as root\n"); ok = 0; } if (!ok) { - rprintf(FERROR,"continuing without password file\n"); - if (envpw) - rprintf(FERROR, "using RSYNC_PASSWORD environment variable.\n"); close(fd); + rprintf(FWARNING, "continuing without password file\n"); + if (envpw) + rprintf(FINFO, "falling back to RSYNC_PASSWORD environment variable.\n"); return NULL; } - if (envpw) - rprintf(FERROR, "RSYNC_PASSWORD environment variable ignored\n"); - n = read(fd, buffer, sizeof buffer - 1); close(fd); if (n > 0) {