summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* lib/crypto: Detect CommonCrypto and use it if availableMatthieu Patou2012-03-145-2/+23
| | | | | | | | | | CommonCrypto/CommonDigest is available on Mac and there is function in the libc for MD5 calculation. MD5Final is a C define of CC_MD5_Final. Under some circumstance we have the symbol defined twice in samba binaries on Snow Leopard at least. By detecting CommonCrypto/CommonDigest we end up always using the system version if available.
* lib/tdb2: make summary handle capabilities properly.Rusty Russell2012-03-141-31/+13
| | | | | | | | | | Another PPC issue (endian?) revealed that the summary code did not handle capabilities correctly: in fact, it went into an endless loop. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Autobuild-User: Rusty Russell <rusty@rustcorp.com.au> Autobuild-Date: Wed Mar 14 06:51:43 CET 2012 on sn-devel-104
* lib/tdb2: fix error string formatting.Rusty Russell2012-03-143-5/+7
| | | | | | | This caused a crash on PPC64 when we failed the mmap (found by failtest, reported by Amitay) Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
* lib/tdb2: Add gcc-style format attribute to tdb_logerr.Rusty Russell2012-03-141-4/+5
| | | | Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
* Fix bug #8811 - sd_has_inheritable_components segfaults on an SD that ↵Jeremy Allison2012-03-141-0/+4
| | | | | | | se_access_check accepts. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Mar 14 05:08:03 CET 2012 on sn-devel-104
* Fix bug #8795 - Samba does not handle the Owner Rights permissions at allRichard Sharpe2012-03-143-6/+49
| | | | | | | Signed-off-by: Jeremy Allison <jra@samba.org> Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Mar 14 02:26:34 CET 2012 on sn-devel-104
* Second part of fix for bug #7933 - samba fails to honor SEC_STD_WRITE_OWNER ↵Jeremy Allison2012-03-131-4/+6
| | | | | | | | | | | | bit with the acl_xattr module. Error found by Andrew Bartlett <abartlet@samba.org> and Ricky Nance <ricky.nance@weaubleau.k12.mo.us>. Don't use a pointer when you really mean a bool flag. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Tue Mar 13 21:56:15 CET 2012 on sn-devel-104
* Fix bug #8807 - dcerpc_lsa_lookup_sids_noalloc() crashes when groups has ↵Christian Ambach2012-03-131-3/+7
| | | | | | | | more than 1000 groups Use correct talloc heirarchy. Signed-off-by: Jeremy Allison <jra@samba.org>
* s4-python: Add missing python source file encoding.Andreas Schneider2012-03-131-0/+2
| | | | | | | See http://www.python.org/dev/peps/pep-0263/ Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Tue Mar 13 19:31:09 CET 2012 on sn-devel-104
* s4-python: Remove env from non-executable webserver script.Andreas Schneider2012-03-131-2/+1
|
* s4-python: Remove env from non-executable samba_tool scripts.Andreas Schneider2012-03-132-4/+0
|
* s4-python: Remove env from non-executable dcerpc scripts.Andreas Schneider2012-03-1311-21/+4
|
* s4-python: Remove execute flag from non-executable rpc_talloc script.Andreas Schneider2012-03-131-0/+0
|
* s4-python: Remove env from non-executable blackbox test scripts.Andreas Schneider2012-03-132-3/+0
|
* s4-python: Remove execute flag from ndrdump blackbox script.Andreas Schneider2012-03-131-0/+0
|
* s4-python: Remove env from non-executable test scripts.Andreas Schneider2012-03-1328-57/+0
|
* s4-python: Remove env from non-executable netcmd scripts.Andreas Schneider2012-03-1321-44/+0
|
* s4-python: Remove execute flag from netcmd scripts.Andreas Schneider2012-03-132-0/+0
|
* s4-python: Remove env from non-executable samba scripts.Andreas Schneider2012-03-1316-33/+0
|
* s4-python: Remove execute flag of upgradehelpers.py.Andreas Schneider2012-03-131-0/+0
|
* s3-spoolss: Consistently fail OpenPrinterEx with "" printernameAndrew Bartlett2012-03-131-0/+4
| | | | | | | | | | | | samba3.rpc.spoolss.printserver has become a flakey test recently, and this papers over the real problem. Andrew Bartlett Signed-off-by: Günther Deschner <gd@samba.org> Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Mar 13 17:51:00 CET 2012 on sn-devel-104
* nbench: Fix typo.Jelmer Vernooij2012-03-131-1/+1
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Tue Mar 13 14:53:07 CET 2012 on sn-devel-104
* samba.8: Fix typo: deamon -> daemon.Jelmer Vernooij2012-03-131-1/+1
|
* samba_dnsupdate: Mention contents of invalid line when encountering parsing ↵Jelmer Vernooij2012-03-131-2/+5
| | | | | | error. Bug: https://bugzilla.samba.org/show_bug.cgi?id=8809
* samba_dnsupdate: Raise proper exception when getting unexpected DNS reply.Jelmer Vernooij2012-03-131-2/+1
|
* samba_dnsupdate: Use docstrings, which show up nicely in API docs.Jelmer Vernooij2012-03-131-21/+17
|
* s3-rpc: Decrypt with the proper session key in CreateTrustedDomainEx2.Alexander Bokovoy2012-03-135-79/+120
| | | | | | | | | | | | | | | | On LSA and SAMR pipes session_key is truncated to 16 byte when doing encryption/decryption. However, this was not done for trusted domain-related modifying operations. As result, Samba 4 client libraries do not work against Samba 3 while working against Windows 2008 r2. Solved this by introducing "session_extract_session_key()" function that allows to specify intent of use of the key. Signed-off-by: Andreas Schneider <asn@samba.org> Autobuild-User: Andreas Schneider <asn@cryptomilk.org> Autobuild-Date: Tue Mar 13 12:23:44 CET 2012 on sn-devel-104
* selftest: samba3.smbtorture_s3.LOCAL-TALLOC-DICT works nowStefan Metzmacher2012-03-131-1/+0
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Mar 13 10:38:20 CET 2012 on sn-devel-104
* s3:torture: fix segfault in LOCAL-TALLOC-DICTStefan Metzmacher2012-03-131-1/+3
| | | | | | talloc_dict_set() expects a pointer to an talloc'ed pointer. metze
* s3:torture: talloc_dict_traverse() returns the number of entriesStefan Metzmacher2012-03-131-2/+7
| | | | metze
* selftest.run: Use subunit version of iso8601.Jelmer Vernooij2012-03-121-2/+2
| | | | | Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Mon Mar 12 01:36:25 CET 2012 on sn-devel-104
* selftest.py: Remove some unnecessary checks.Jelmer Vernooij2012-03-111-6/+1
|
* selftest.py: Move some infrastructure for running commands to selftest.run, ↵Jelmer Vernooij2012-03-113-37/+162
| | | | with tests.
* upgradedns: Remove unused import.Jelmer Vernooij2012-03-111-1/+0
|
* samba-tool: Write diagnostics to stderr rather than stdout.Jelmer Vernooij2012-03-111-1/+1
|
* s4:upgradeprovision - fix some output messagesMatthias Dieter Wallnöfer2012-03-111-3/+3
| | | | | Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Sun Mar 11 21:54:54 CET 2012 on sn-devel-104
* s3: Improve statvfs supportBrad Smith2012-03-112-9/+14
| | | | | Autobuild-User: Volker Lendecke <vl@samba.org> Autobuild-Date: Sun Mar 11 14:18:04 CET 2012 on sn-devel-104
* waf: Do not use standards.h on darwinVolker Lendecke2012-03-111-1/+6
| | | | We get a nasty warning every time we include that
* s4 dns: Test deleting records and fix a small buKai Blin2012-03-112-0/+43
| | | | | Autobuild-User: Kai Blin <kai@samba.org> Autobuild-Date: Sun Mar 11 02:27:45 CET 2012 on sn-devel-104
* s4 dns: Be less chatty during testsKai Blin2012-03-111-4/+6
|
* s4 dns: Clean up tests a bitKai Blin2012-03-111-2/+1
|
* s4 dns: Support TXT updates, add testsKai Blin2012-03-112-8/+110
|
* s4 dns: Support TXT queriesKai Blin2012-03-111-0/+11
|
* s3 selftest: Allow DNS updates during testingKai Blin2012-03-111-1/+3
|
* tdb_wrap: Move to specific directory.Jelmer Vernooij2012-03-1024-27/+29
| | | | | | | | | | It's a bit confusing to mix low-level and high-level libraries. We had multiple libraries in one directory, and there were have circular dependencies with other libraries outside that directory (in this case, samba-hostconfig). Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Sat Mar 10 23:13:01 CET 2012 on sn-devel-104
* samba.tests.blackbox.samba_tool_drs: Remove unused import.Jelmer Vernooij2012-03-101-1/+0
|
* wscript: Include talloc, tdb and ldb in pydoctor output.Jelmer Vernooij2012-03-101-1/+10
|
* samba.samdb: Fix formatting of arguments in docstring.Jelmer Vernooij2012-03-101-4/+4
|
* pydoctor: Specify --project-name.Jelmer Vernooij2012-03-101-1/+1
|
* python: samba: Use relative import for _glue.Jelmer Vernooij2012-03-101-1/+1
| | | | For some reason, using an absolute import breaks pydoctor.