1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

r21316: if we got an unexpected nbt packet that most times mean

we got a 2nd answer to a broadcast message and have already remove
the packet id from out list while getting the first response

metze
This commit is contained in:
Stefan Metzmacher 2007-02-13 15:17:29 +00:00 committed by Gerald (Jerry) Carter
parent 23adca4e34
commit 8c26e04900

View File

@ -215,7 +215,7 @@ static void nbt_name_socket_recv(struct nbt_name_socket *nbtsock)
if (nbtsock->unexpected.handler) { if (nbtsock->unexpected.handler) {
nbtsock->unexpected.handler(nbtsock, packet, src); nbtsock->unexpected.handler(nbtsock, packet, src);
} else { } else {
DEBUG(2,("Failed to match request for incoming name packet id 0x%04x on %p\n", DEBUG(10,("Failed to match request for incoming name packet id 0x%04x on %p\n",
packet->name_trn_id, nbtsock)); packet->name_trn_id, nbtsock));
} }
talloc_free(tmp_ctx); talloc_free(tmp_ctx);