Include 2008 in the copyright years.
[rsync/rsync.git] / authenticate.c
index b8f63ac..7f6f71d 100644 (file)
@@ -2,7 +2,7 @@
  * Support rsync daemon authentication.
  *
  * Copyright (C) 1998-2000 Andrew Tridgell
- * Copyright (C) 2002-2007 Wayne Davison
+ * Copyright (C) 2002-2008 Wayne Davison
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -163,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");
@@ -171,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;