| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
| |
| |
| |
| |
| |
| | |
Signed-off-by: Michael Adam <obnox@samba.org>
Autobuild-User: Michael Adam <obnox@samba.org>
Autobuild-Date: Mon May 30 18:53:28 CEST 2011 on sn-devel-104
|
| |
| |
| |
| |
| | |
so that net registry enumerate output is as before, and
net registry enumerate_recursive is formatted more nicely
|
| |
| |
| |
| | |
Signed-off-by: Michael Adam <obnox@samba.org>
|
| |
| |
| |
| | |
Signed-off-by: Michael Adam <obnox@samba.org>
|
| |
| |
| |
| | |
Signed-off-by: Michael Adam <obnox@samba.org>
|
| |
| |
| |
| | |
Signed-off-by: Michael Adam <obnox@samba.org>
|
| |
| |
| |
| | |
Signed-off-by: Michael Adam <obnox@samba.org>
|
| |
| |
| |
| | |
Signed-off-by: Michael Adam <obnox@samba.org>
|
| |
| |
| |
| |
| |
| |
| | |
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Mon May 30 17:41:18 CEST 2011 on sn-devel-104
|
| |
| |
| |
| |
| | |
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Mon May 30 12:47:27 CEST 2011 on sn-devel-104
|
| |
| |
| |
| |
| |
| |
| |
| | |
Patch from Samuel Thibault <sthibault@debian.org> to fix Debian Bug 610678
resp. BSO #7998. IOV_MAX and UIO_MAXIOV are not defined on GNU Hurd.
Autobuild-User: Björn Jacke <bj@sernet.de>
Autobuild-Date: Mon May 30 00:53:59 CEST 2011 on sn-devel-104
|
| |
| |
| |
| |
| | |
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sun May 29 22:25:55 CEST 2011 on sn-devel-104
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
We expect a negative session response with a 0x82 error (called name not
present), not a 0x82 message
|
| | |
|
| |
| |
| |
| | |
For this purpose we don't need the full cli_state
|
| |
| |
| |
| |
| |
| |
| | |
A leftover of stuff that cli_connect() does
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sun May 29 15:47:17 CEST 2011 on sn-devel-104
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sun May 29 13:57:21 CEST 2011 on sn-devel-104
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| | |
We do that in the loop for the ip address anyway
|
| |
| |
| |
| |
| | |
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sun May 29 10:11:54 CEST 2011 on sn-devel-104
|
| | |
|
| |
| |
| |
| |
| | |
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sat May 28 21:57:04 CEST 2011 on sn-devel-104
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sat May 28 18:06:49 CEST 2011 on sn-devel-104
|
| |
| |
| |
| | |
If all connection attempts fail, return immediately. Plain bug.
|
| |
| |
| |
| |
| | |
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Sat May 28 11:47:11 CEST 2011 on sn-devel-104
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
This builds up a cli_state until after the netbios session setup. It makes use
of smbsock_connect, so it connects to 139 and 445 simultaneously. This improves
the connection to Windows 2008 which does not listen on *SMBSERVER anymore.
|
| |
| |
| |
| |
| |
| |
| | |
Signed-off-by: Michael Adam <obnox@samba.org>
Autobuild-User: Michael Adam <obnox@samba.org>
Autobuild-Date: Fri May 27 13:27:03 CEST 2011 on sn-devel-104
|
| |
| |
| |
| |
| |
| |
| | |
Thanks to Samba-JP oota <ribbon@samba.gr.jp>
Autobuild-User: Volker Lendecke <vlendec@samba.org>
Autobuild-Date: Fri May 27 10:12:12 CEST 2011 on sn-devel-104
|
| |
| |
| |
| | |
Thanks to Samba-JP oota <ribbon@samba.gr.jp>
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
security blob size is greater than 16 kB
We were not correctly checking the output of asn1_start_tag().
asn1_start_tag() returns -1 and sets data->has_error if the
remaining blob size is too short to contain the tag length.
We were checking data->has_error and returning NT_STATUS_OK
(to allow the second asn.1 parse to fail in that case). We
should not be checking data->has_error in this case, but
falling through to the code that already checks the length.
Thanks to Jim for reproducing this for me. We don't get bitten
by this as we announce a max buffer size of 16k, greater than
Windows's 4k, which means that most krb5 spnego packets already
fit.
Jeremy.
Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Fri May 27 02:57:27 CEST 2011 on sn-devel-104
|