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

r18411: Getting a zero length read is common. Don't log at

debug level zero.
Jeremy.
This commit is contained in:
Jeremy Allison 2006-09-12 00:46:35 +00:00 committed by Gerald (Jerry) Carter
parent 47f0c71218
commit e23caeb7b5

View File

@ -46,7 +46,7 @@ static void child_read_request(struct winbindd_cli_state *state)
sizeof(state->request));
if (len != sizeof(state->request)) {
DEBUG(0, ("Got invalid request length: %d\n", (int)len));
DEBUG(len > 0 ? 0 : 3, ("Got invalid request length: %d\n", (int)len));
state->finished = True;
return;
}