diff options
| author | Wayne Davison <wayned@samba.org> | 2004-09-24 17:04:05 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2004-09-24 17:04:05 +0000 |
| commit | 30c041f9adc3468805e696753e21955d3c68b9e6 (patch) | |
| tree | 74ed326d186adadcde958b4c7ab83da233221c65 /authenticate.c | |
| parent | be7cf82299004d803d985b5ec9bec26b2562ec85 (diff) | |
| download | android_external_rsync-30c041f9adc3468805e696753e21955d3c68b9e6.tar.gz android_external_rsync-30c041f9adc3468805e696753e21955d3c68b9e6.tar.bz2 android_external_rsync-30c041f9adc3468805e696753e21955d3c68b9e6.zip | |
Changed the errors concerning the secrets file to output with FLOG
instead of FERROR.
Diffstat (limited to 'authenticate.c')
| -rw-r--r-- | authenticate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/authenticate.c b/authenticate.c index db196617..542f4403 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)", 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; } |
