1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

unable to open smbpasswd on initial create should only be a warning

(This used to be commit 8712ac8499)
This commit is contained in:
Andrew Tridgell 2001-11-27 03:34:25 +00:00
parent 701ecfc7a0
commit 28c118c474

View File

@ -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;
}