1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

better debug messages + fix typo in debug message

(This used to be commit b377f06fd90f607fa9e0e2e61981e835527b568c)
This commit is contained in:
Simo Sorce 2001-07-26 22:05:51 +00:00
parent 08138a3244
commit b99e314cfb

View File

@ -344,7 +344,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int
if (user_in_list(user, list))
conn->read_only = True;
}
else DEBUG(0, ("read list substitution failed\n"));
else DEBUG(0, ("ERROR: read list substitution failed\n"));
if (list) lp_list_free(&list);
lp_list_copy(&list, lp_writelist(snum));
@ -352,7 +352,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int
if (user_in_list(user, list))
conn->read_only = False;
}
else DEBUG(0, ("write list substitution failed writelist\n"));
else DEBUG(0, ("ERROR: write list substitution failed\n"));
if (list) lp_list_free(&list);
}