diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-11-27 03:34:25 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-11-27 03:34:25 +0000 |
commit | 28c118c4749f2e6719dd037411a8178d7a1fa13c (patch) | |
tree | 1ce13f8b63d7212c8461ad80a9e56c6f343ffdae /source3 | |
parent | 701ecfc7a0a944844cadfd0b2c19f104ab7984b0 (diff) | |
download | samba-28c118c4749f2e6719dd037411a8178d7a1fa13c.tar.gz samba-28c118c4749f2e6719dd037411a8178d7a1fa13c.tar.bz2 samba-28c118c4749f2e6719dd037411a8178d7a1fa13c.zip |
unable to open smbpasswd on initial create should only be a warning
(This used to be commit 8712ac84995f8454619245ca111575d4b9769b43)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/pdb_smbpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_smbpasswd.c b/source3/passdb/pdb_smbpasswd.c index ce79be1666..fa2a2a82e7 100644 --- a/source3/passdb/pdb_smbpasswd.c +++ b/source3/passdb/pdb_smbpasswd.c @@ -166,7 +166,7 @@ static void *startsmbfilepwent(const char *pfile, enum pwf_access_type type, int DEBUG(10, ("startsmbfilepwent_internal: opening file %s\n", pfile)); if((fp = sys_fopen(pfile, open_mode)) == NULL) { - DEBUG(0, ("startsmbfilepwent_internal: unable to open file %s. Error was %s\n", pfile, strerror(errno) )); + DEBUG(2, ("startsmbfilepwent_internal: unable to open file %s. Error was %s\n", pfile, strerror(errno) )); return NULL; } |