Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-07-18 | source3/netapi: fix only caller which doesn't set up a talloc_stackframe() | Rusty Russell | 1 | -0/+4 | |
libnetapi_free() needs a stackframe too; looked like Andrew and Günther missed this in a37de9a95974c138d264d9cb0c7829bb426bb2d6. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> | |||||
2012-07-18 | loadparm: make the source3/ lp_ functions take an explicit TALLOC_CTX *. | Rusty Russell | 1 | -2/+2 | |
They use talloc_tos() internally: hoist that up to the callers, some of whom don't want to us talloc_tos(). A simple patch, but hits a lot of files. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> | |||||
2012-06-03 | s3-libnetapi: Cope with popt versions without POPT_TABLEEND | Andrew Bartlett | 2 | -0/+8 | |
2012-05-28 | s3:libsmb: get rid of cli_state_remote_name | Luk Claes | 1 | -2/+3 | |
Signed-off-by: Luk Claes <luk@debian.org> Signed-off-by: Stefan Metzmacher <metze@samba.org> | |||||
2012-03-20 | libndr: Rename policy_handle_equal to ndr_policy_handle_equal. | Jelmer Vernooij | 1 | -3/+3 | |
This makes the NDR namespace a bit clearer, in preparation of ABI checking. | |||||
2012-02-09 | s3-build: remove EXEEXT from Makefiles | Andrew Bartlett | 2 | -106/+106 | |
As far as I am aware, we do not actually build on any platforms that require this. The last Stratos VOS release on ftp://ftp.stratus.com/vos/samba/samba.html was 3.0.5 Andrew Bartlett | |||||
2012-02-01 | s3-lib: Fix util_cmdline which doesn't use popt. | Andreas Schneider | 1 | -1/+1 | |
This creates its own header file for util_cmdline so it doesn't need to link against popt. This should fix linking on FreeBSD. | |||||
2011-11-03 | s3:lib/netapi: s/Undefined/SMB_SIGNING_DEFAULT/ | Stefan Metzmacher | 1 | -1/+1 | |
metze | |||||
2011-10-26 | s3-netapi: remove pointless use_memory_krb5_ccache. | Günther Deschner | 2 | -20/+0 | |
This breaks the ABI. Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Oct 26 13:23:58 CEST 2011 on sn-devel-104 | |||||
2011-10-21 | s3-waf: only compile common.c in netapi examples code once. | Günther Deschner | 1 | -2/+8 | |
Guenther | |||||
2011-10-21 | s3-netapi: use NetApiBufferAllocate() for returned buffer in getdc calls. | Günther Deschner | 1 | -2/+30 | |
Guenther | |||||
2011-10-21 | s3-netapi: fix missing include in examples code. | Günther Deschner | 1 | -0/+2 | |
Guenther | |||||
2011-10-21 | build: compile (but do not install) netapi examples | Andrew Bartlett | 1 | -0/+64 | |
The only example not yet built is the GTK domain join gui. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Fri Oct 21 01:31:55 CEST 2011 on sn-devel-104 | |||||
2011-10-20 | s3-netapi Compile (but do not install) netapi tests | Andrew Bartlett | 1 | -0/+6 | |
2011-10-08 | s3:lib/netapi: avoid '//' comments | Stefan Metzmacher | 2 | -3/+3 | |
The compiler on openindiana doesn't like them. metze | |||||
2011-09-21 | s3-netapi: allow to use default krb5 credential cache for libnetapi users. | Günther Deschner | 2 | -8/+23 | |
Guenther | |||||
2011-07-28 | s3:libnetapi: use lp_load_global() | Michael Adam | 1 | -1/+1 | |
2011-07-22 | s3:lib/netapi: make use of cli_state_remote_name() | Stefan Metzmacher | 1 | -2/+7 | |
metze | |||||
2011-07-03 | s3: Make cli_cm_open return NTSTATUS | Volker Lendecke | 1 | -7/+10 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sun Jul 3 23:57:53 CEST 2011 on sn-devel-104 | |||||
2011-06-23 | s3-param Remove 'announce version' parameter | Andrew Bartlett | 1 | -2/+2 | |
The only users I can find of this on the internet involve confused users, and our own documentation recommends never setting this. Don't confuse our users any longer. Andrew Bartlett | |||||
2011-06-10 | source3/lib/netapi/libnetapi.h: fix licence/copyright | Günther Deschner | 1 | -0/+19 | |
Guenther | |||||
2011-06-09 | s3-param Remove special case for global_myname(), rename to lp_netbios_name() | Andrew Bartlett | 1 | -1/+1 | |
There is no reason this can't be a normal constant string in the loadparm system, now that we have lp_set_cmdline() to handle overrides correctly. Andrew Bartlett | |||||
2011-06-09 | s3-talloc Change TALLOC_ZERO_ARRAY() to talloc_zero_array() | Andrew Bartlett | 4 | -9/+9 | |
Using the standard macro makes it easier to move code into common, as TALLOC_ZERO_ARRAY isn't standard talloc. | |||||
2011-06-09 | s3-talloc Change TALLOC_ZERO_P() to talloc_zero() | Andrew Bartlett | 3 | -3/+3 | |
Using the standard macro makes it easier to move code into common, as TALLOC_ZERO_P isn't standard talloc. | |||||
2011-06-09 | s3-talloc Change TALLOC_P() to talloc() | Andrew Bartlett | 1 | -2/+2 | |
Using the standard macro makes it easier to move code into common, as TALLOC_P isn't standard talloc. | |||||
2011-06-09 | s3-talloc Change TALLOC_ARRAY() to talloc_array() | Andrew Bartlett | 1 | -1/+1 | |
Using the standard macro makes it easier to move code into common, as TALLOC_ARRAY isn't standard talloc. | |||||
2011-05-30 | s3: fix some -Wunused-but-set-variable build warnings. | Günther Deschner | 1 | -2/+0 | |
Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Mon May 30 17:41:18 CEST 2011 on sn-devel-104 | |||||
2011-05-20 | s3: Fix Coverity ID 2573: UNUSED_VALUE | Volker Lendecke | 1 | -2/+3 | |
Andrew B., please check! | |||||
2011-05-13 | s3-netapi Initialise global variables in libnetapi | Andrew Bartlett | 1 | -1/+1 | |
It is important to initalise the global variables when loading this configuration for the potentially first time. Andrew Bartlett | |||||
2011-05-13 | s3-libnetapi Don't create a talloc_stackframe() in a global variable | Andrew Bartlett | 2 | -16/+37 | |
This also ensures that libnetapi_free() invalidates the global stat_ctx variable, and changes the API so that the behaviour of the error string routines is to consistently return a allocated string. Pair-Programmed-With: Günther Deschner <gd@samba.org> Andrew Bartlett | |||||
2011-05-13 | s3-libnetapi/libnetjoin: fix uninitialized variables after the libsmbconf ↵ | Günther Deschner | 1 | -1/+1 | |
changes. Guenther | |||||
2011-05-10 | libsmbconf: Convert smbconf_set_parameter() to sbcErr. | Andreas Schneider | 1 | -1/+8 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2011-05-10 | libsmbconf: Convert smbconf_init() to sbcErr. | Andreas Schneider | 1 | -2/+7 | |
Signed-off-by: Michael Adam <obnox@samba.org> | |||||
2011-05-06 | s3-libsmb: move protos to libsmb/proto.h | Günther Deschner | 1 | -0/+1 | |
Guenther | |||||
2011-05-05 | More const fixes for compiler warnings from the waf build. | Jeremy Allison | 2 | -2/+2 | |
2011-04-29 | s3-proto: remove duplicate prototypes. | Günther Deschner | 1 | -0/+2 | |
Guenther | |||||
2011-04-27 | s3-netapi: Fix Coverity CID #2302: FORWARD_NULL | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2011-04-24 | s3:rpc_client: map fault codes to NTSTATUS with dcerpc_fault_to_nt_status() | Stefan Metzmacher | 1 | -1/+1 | |
Most fault codes have a NTSTATUS representation, so use that. This brings the fault handling in common with the source4/librpc/rpc code, which make it possible to share more highlevel code, between source3 and source4 as the error checking can be the same now. metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Sun Apr 24 10:44:53 CEST 2011 on sn-devel-104 | |||||
2011-04-17 | s3: Use \0 instead of NULL when 0-terminating a string | Volker Lendecke | 1 | -1/+1 | |
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Sun Apr 17 12:26:15 CEST 2011 on sn-devel-104 | |||||
2011-04-13 | s3-rpc_client: add and use rpc_client/rpc_client.h. | Günther Deschner | 3 | -0/+3 | |
Guenther | |||||
2011-04-13 | s3-netapi: remove two shadowed variables. | Günther Deschner | 1 | -2/+0 | |
Guenther | |||||
2011-04-13 | s3-lib Move isvalid83_w to mangle_hash.c | Andrew Bartlett | 1 | -1/+0 | |
This means that there is no need for the 'valid.dat' table to be loaded by anything other than smbd, so the unloader is also removed. The concept of a 'valid dos character' has been replaced by the hash2 mangle method. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org> | |||||
2011-04-12 | s3-netapi: use dcerpc_try_samr_connects(). | Günther Deschner | 1 | -4/+18 | |
Guenther | |||||
2011-04-12 | s3-netapi: use libnetapi_get_binding_handle(). | Günther Deschner | 6 | -108/+54 | |
Guenther | |||||
2011-04-12 | s3-netapi: add libnetapi_get_binding_handle(). | Günther Deschner | 2 | -0/+27 | |
Guenther | |||||
2011-03-25 | s3-netapi: fix memoryleak while not using talloc_tos() in ↵ | Günther Deschner | 2 | -6/+6 | |
cli_get_session_key() usage. Thanks Volker! Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Fri Mar 25 18:21:18 CET 2011 on sn-devel-104 | |||||
2011-03-24 | s3-netapi: use cli_get_session_key() in netapi. | Günther Deschner | 2 | -6/+53 | |
Guenther | |||||
2011-03-19 | s3-build: use HAVE_ADS define in some more places. | Günther Deschner | 1 | -1/+1 | |
Guenther | |||||
2011-03-16 | s3: Fix Coverity ID 2231, REVERSE_INULL | Volker Lendecke | 1 | -2/+3 | |
No point in checking for !ctx after dereferencing it Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Mar 16 22:51:52 CET 2011 on sn-devel-104 | |||||
2011-03-02 | s3-libds: use already existing ../libds/common/flag_mapping.h header. | Günther Deschner | 1 | -0/+1 | |
Guenther |