diff options
author | Martin Pool <mbp@samba.org> | 2000-10-26 07:24:18 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2000-10-26 07:24:18 +0000 |
commit | a039749b4c21e3439dc06fcdd5355828f1f95463 (patch) | |
tree | df004166c76fa06e743581600f724a840becdd74 /authenticate.c | |
parent | 15b84e142a7de03abd8f9831788d66f0052daea0 (diff) | |
download | rsync-a039749b4c21e3439dc06fcdd5355828f1f95463.tar.gz rsync-a039749b4c21e3439dc06fcdd5355828f1f95463.tar.bz2 rsync-a039749b4c21e3439dc06fcdd5355828f1f95463.zip |
Print strerror when a system error occurs; add a new function rsyserr
to do this. This is not used in every case yet -- I've just changed a
few cases that were causing trouble. Please convert others as you see them.
Diffstat (limited to 'authenticate.c')
-rw-r--r-- | authenticate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/authenticate.c b/authenticate.c index 30bc53db..842a59ee 100644 --- a/authenticate.c +++ b/authenticate.c @@ -85,7 +85,7 @@ static int get_secret(int module, char *user, char *secret, int len) if (fd == -1) return 0; if (do_stat(fname, &st) == -1) { - rprintf(FERROR,"stat(%s) : %s\n", fname, strerror(errno)); + rsyserr(FERROR, errno, "stat(%s)", fname); ok = 0; } else if (lp_strict_modes(module)) { if ((st.st_mode & 06) != 0) { @@ -150,7 +150,7 @@ static char *getpassf(char *filename) } if (do_stat(filename, &st) == -1) { - rprintf(FERROR,"stat(%s) : %s\n", filename, strerror(errno)); + rsyserr(FERROR, errno, "stat(%s)", filename); ok = 0; } else if ((st.st_mode & 06) != 0) { rprintf(FERROR,"password file must not be other-accessible\n"); |