summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* s4-samba.samdb: Fix leading indention and trailing ';'Kamen Mazdrashki2010-10-031-10/+10
|
* s4-python-samba: Fix few cosmeticsKamen Mazdrashki2010-10-031-4/+3
| | | | | - we have sys module already imported - _glue module is part of samba package so be more precise how to import
* s3: Attempt to fix the non-ads buildVolker Lendecke2010-10-031-1/+1
|
* land-remote: Pass extra arguments on to land.Jelmer Vernooij2010-10-032-3/+3
|
* pytdb: Include Python.h first to prevent warning.Jelmer Vernooij2010-10-021-1/+1
|
* subunithelper: Remove accidentally added line.Jelmer Vernooij2010-10-021-3/+0
|
* pytdb: Check errors after PyObject_New() callsKirill Smelkov2010-10-021-0/+7
| | | | | | | | The call could fail with e.g. MemoryError, and we'll dereference NULL pointer without checking. Signed-off-by: Kirill Smelkov <kirr@landau.phys.spbu.ru> Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
* pytdb: Add support for tdb_repack()Kirill Smelkov2010-10-022-0/+15
| | | | | | Cc: 597386@bugs.debian.org Signed-off-by: Kirill Smelkov <kirr@landau.phys.spbu.ru> Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
* pytdb: Add TDB_INCOMPATIBLE_HASH open flagKirill Smelkov2010-10-021-0/+1
| | | | | | | | | | | In 2dcf76 Rusty added TDB_INCOMPATIBLE_HASH open flag which selects Jenkins lookup3 hash for new databases. Expose this flag to python users too. Cc: Rusty Russell <rusty@rustcorp.com.au> Signed-off-by: Kirill Smelkov <kirr@mns.spb.ru> Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
* subunithelper: Fix format time.Jelmer Vernooij2010-10-021-1/+2
|
* land: Implement --fail-immediately directly in Python, provide subunit file.Jelmer Vernooij2010-10-021-26/+96
|
* subunithelper: Make filter options optional.Jelmer Vernooij2010-10-021-9/+9
|
* format-subunit: Split out summary file writing.Jelmer Vernooij2010-10-021-7/+11
|
* selftest: Move plain text formatter to subunithelper.Jelmer Vernooij2010-10-022-204/+204
|
* land: Add separate treestagebuilder for subunit.Jelmer Vernooij2010-10-021-12/+41
|
* land: Cherry-pick tridges changes to autobuild.Jelmer Vernooij2010-10-021-3/+22
|
* land: Move stage building into a separate class so we can have subclasses ↵Jelmer Vernooij2010-10-022-36/+64
| | | | (e.g. subunit-specific).
* land: Only pass shell=True if necessary.Jelmer Vernooij2010-10-021-19/+22
|
* land: Add --fail-slowly option.Jelmer Vernooij2010-10-022-6/+13
|
* Several smaller cleanups, use python coding style.Jelmer Vernooij2010-10-021-17/+16
|
* land: Avoid running things in a shell where not necessary.Jelmer Vernooij2010-10-021-4/+9
|
* land-remote: Checkout repository first.Jelmer Vernooij2010-10-021-2/+3
|
* land-remote: Use --repository option.Jelmer Vernooij2010-10-021-1/+1
|
* land: Add --repository option.Jelmer Vernooij2010-10-022-4/+12
|
* land: Move more functionality onto builder.Jelmer Vernooij2010-10-021-9/+23
|
* land: Avoid more uses of chdir().Jelmer Vernooij2010-10-021-8/+2
|
* Split land.py back out of autobuild.py, so I can change it withoutJelmer Vernooij2010-10-022-0/+473
| | | | risking to break the autobuild system.
* s3: Attempt to fix bug 7665Volker Lendecke2010-10-0211-136/+295
| | | | | | | Quite a few of our internal routines put stuff on talloc_tos() these days. In top-level netapi routines, properly allocate a stackframe and clean it again. Also, don't leak memory in the rpccli_ callers onto the libnetapi context.
* s3: Fix a 64-bit BUGVolker Lendecke2010-10-021-1/+1
| | | | | | | | | | | | | | | Quick explanation why this is a problem: It is not safe to pass a pointer to a uint32_t into a routine that expects a size_t *. The routine that this pointer is passed to has no chance to find out that in reality it was passed a pointer to a uint32_t. On platforms where sizeof(size_t)==8, we get a nice overwrite of a stack area that should not be overwritten. As this happens over an over again: Does someone know a means to make gcc stop with an error in this case? Volker
* bisect: more bisection optionsAndrew Tridgell2010-10-021-6/+12
| | | | | | | and fixes for the old ones Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sat Oct 2 06:14:46 UTC 2010 on sn-devel-104
* script: added bisect-test.py git bisect scriptAndrew Tridgell2010-10-011-0/+85
| | | | this can be used to work out what commit broke a set of tests
* autobuild: show top commit in emailsAndrew Tridgell2010-10-011-2/+20
|
* autobuild: include autobuild.log in logs.tar.gzAndrew Tridgell2010-10-011-0/+1
|
* s4-repl: use the GC principal name for DRS replication connectionAndrew Tridgell2010-10-013-6/+76
| | | | | | | this is required when talking to RODCs (for notify calls), and is good practice for all DCs Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-rpc: added target_principal binding handle optionAndrew Tridgell2010-10-017-6/+18
| | | | | | this allows you to specify a target SPN for a connection Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4-dsdb: added dsdb_search_by_dn_guid()Andrew Tridgell2010-10-011-0/+26
| | | | | | | this is more efficient than first searching for the DN, then doing a search. We should look at using this in lots of existing code Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* s4:rpc_server/netlogon: don't use dcerpc_binding_handle_call_send/recv() ↵Stefan Metzmacher2010-10-021-12/+9
| | | | | | | | | directly metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Sat Oct 2 03:11:38 UTC 2010 on sn-devel-104
* netlogon.idl: add missing flags to DSGETDC_VALID_FLAGSStefan Metzmacher2010-10-021-0/+3
| | | | metze
* s4-gensec Always honour the set server principalAndrew Bartlett2010-10-021-1/+1
| | | | | | | | | | The spengo code won't set this unless it is allowed to by this same option, but other callers may need it. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Sat Oct 2 02:27:39 UTC 2010 on sn-devel-104
* s4-drs: fixed comparison login in replicated renamesAndrew Tridgell2010-10-021-45/+72
| | | | | | | | we need to ensure we only ever compare USNs from the same originating invocation ID. Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Sat Oct 2 01:45:19 UTC 2010 on sn-devel-104
* s4-kcc: remove stale repsTo entries in the KCCAndrew Tridgell2010-10-021-0/+32
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* autobuild: fixed tuple count for retryAndrew Tridgell2010-10-011-1/+1
|
* s4-kerberos Don't regenerate key values for each alias in keytabAndrew Bartlett2010-10-021-43/+35
| | | | | | | | | Instead, store the same key value under the multiple alias names. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Sat Oct 2 00:16:52 UTC 2010 on sn-devel-104
* s4-kdc Rework 'allowed encryption types' handling in the KDCAndrew Bartlett2010-10-021-28/+44
| | | | | | | All DCs and all krbtgt servers are forced to use AES, regardless of the msDS-SecondaryKrbTgtNumber value. Andrew Bartlett
* s4-auth Add make_server_info_pac() to include 'resource domain' groupsAndrew Bartlett2010-10-022-5/+40
| | | | | | | | Previously, our PAC code didn't include these groups into the server_info from which we would eventually calculate the full list of tokenGroups. Andrew Bartlett
* s4-auth Allocate domain SIDs under the sids array, not server_infoAndrew Bartlett2010-10-021-1/+1
| | | | Andrew Bartlett
* heimdal use returned server entry from HDB to compare realmsAndrew Bartlett2010-10-021-1/+1
| | | | | | | | Some hdb modules (samba4) may change the case of the realm in a returned result. Use that to determine if it matches the krbtgt realm also returned from the DB (the DB will return it in the 'right' case) Andrew Bartlett
* s3-spoolss: Strip off ", DrvConvert" and ",LocalOnly" in OpenPrinterEx as ↵Günther Deschner2010-10-021-0/+13
| | | | | | | | seen from Win7 clients. These suffixes and their meaning are not documented (yet). Guenther
* s3-spoolss: Fixed print job access.Andreas Schneider2010-10-021-4/+4
|
* s3-spoolss: Fixed print_access_check server_info.Andreas Schneider2010-10-022-3/+3
|