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:
parent
47f0c71218
commit
e23caeb7b5
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user