1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-07 12:23:51 +03:00

r17277: we need to trigger an event when we return directly,

otherwise the callers callback function will not be called
and the caller is hanging forever...

metze
This commit is contained in:
Stefan Metzmacher
2006-07-27 16:20:59 +00:00
committed by Gerald (Jerry) Carter
parent 699dee70aa
commit e231eba828

View File

@@ -462,7 +462,7 @@ struct composite_context *smb_composite_sesssetup_send(struct smbcli_session *se
/* no session setup at all in earliest protocol varients */
if (session->transport->negotiate.protocol < PROTOCOL_LANMAN1) {
ZERO_STRUCT(io->out);
c->state = COMPOSITE_STATE_DONE;
composite_done(c);
return c;
}