X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/ba582f753a4c3eb2dd793904fb6a378ed8ffd90a..fe1c19dcdfa000c2461e85ed7bf712de49904377:/authenticate.c diff --git a/authenticate.c b/authenticate.c index db196617..ff240288 100644 --- a/authenticate.c +++ b/authenticate.c @@ -87,19 +87,19 @@ static int get_secret(int module, char *user, char *secret, int len) return 0; if (do_stat(fname, &st) == -1) { - rsyserr(FERROR, errno, "stat(%s)", fname); + rsyserr(FLOG, errno, "stat(%s)", safe_fname(fname)); ok = 0; } else if (lp_strict_modes(module)) { if ((st.st_mode & 06) != 0) { - rprintf(FERROR,"secrets file must not be other-accessible (see strict modes option)\n"); + rprintf(FLOG, "secrets file must not be other-accessible (see strict modes option)\n"); ok = 0; } else if (am_root && (st.st_uid != 0)) { - rprintf(FERROR,"secrets file must be owned by root when running as root (see strict modes)\n"); + rprintf(FLOG, "secrets file must be owned by root when running as root (see strict modes)\n"); ok = 0; } } if (!ok) { - rprintf(FERROR,"continuing without secrets file\n"); + rprintf(FLOG, "continuing without secrets file\n"); close(fd); return 0; } @@ -156,14 +156,15 @@ static char *getpassf(char *filename) return NULL; if ((fd = open(filename,O_RDONLY)) < 0) { - rsyserr(FERROR, errno, "could not open password file \"%s\"",filename); + rsyserr(FERROR, errno, "could not open password file \"%s\"", + safe_fname(filename)); if (envpw) rprintf(FERROR, "falling back to RSYNC_PASSWORD environment variable.\n"); return NULL; } if (do_stat(filename, &st) == -1) { - rsyserr(FERROR, errno, "stat(%s)", filename); + rsyserr(FERROR, errno, "stat(%s)", safe_fname(filename)); ok = 0; } else if ((st.st_mode & 06) != 0) { rprintf(FERROR,"password file must not be other-accessible\n");