summaryrefslogtreecommitdiff
path: root/authenticate.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2007-11-22 09:56:21 -0800
committerWayne Davison <wayned@samba.org>2007-11-22 10:05:36 -0800
commit3f0211b63a6cdc4a2cecfd2a0dffeba172c86a47 (patch)
tree2ec9e186c513214ff35ea1060b773e1d63106858 /authenticate.c
parenta6c6f8e650f9790c7827ad1ff321fe21daf522cf (diff)
downloadrsync-3f0211b63a6cdc4a2cecfd2a0dffeba172c86a47.tar.gz
rsync-3f0211b63a6cdc4a2cecfd2a0dffeba172c86a47.tar.bz2
rsync-3f0211b63a6cdc4a2cecfd2a0dffeba172c86a47.zip
New logging categories added to allow differentiation between
transfer errors, normal errors, and warnings. New messages are translated into old FERROR/FINFO categories for older protocols.
Diffstat (limited to 'authenticate.c')
-rw-r--r--authenticate.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/authenticate.c b/authenticate.c
index afb85541..dd74b684 100644
--- a/authenticate.c
+++ b/authenticate.c
@@ -21,7 +21,6 @@
#include "rsync.h"
extern char *password_file;
-extern int log_got_error;
/***************************************************************************
encode a buffer using base64 - simple and slow algorithm. null terminates
@@ -164,7 +163,7 @@ 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(FINFO, "falling back to RSYNC_PASSWORD environment variable.\n");
@@ -172,18 +171,18 @@ static const char *getpassf(const char *filename)
}
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) {
close(fd);
- rprintf(FERROR, "continuing without password file\n");
+ rprintf(FWARNING, "continuing without password file\n");
if (envpw)
rprintf(FINFO, "falling back to RSYNC_PASSWORD environment variable.\n");
return NULL;
@@ -308,9 +307,6 @@ void auth_client(int fd, const char *user, const char *challenge)
pass = getpass("Password: ");
}
- /* Any errors output during password handling aren't transfer errors. */
- log_got_error = 0;
-
if (!pass)
pass = "";