summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* s4:dsdb/common/util_samr.c - use an LDB constant for result checkingMatthias Dieter Wallnöfer2010-10-071-1/+1
| | | | | Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Thu Oct 7 07:40:31 UTC 2010 on sn-devel-104
* s4:dsdb/common/util.c - provide message set functions for integer typesMatthias Dieter Wallnöfer2010-10-071-0/+31
| | | | They will be used by the samldb LDB module
* script: improvements to bisect-test.pyAndrew Tridgell2010-10-071-12/+17
| | | | | | | | | - allow control of all the commands (eg. specify configure command) - do a bisect reset at the end Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Thu Oct 7 04:11:21 UTC 2010 on sn-devel-104
* waf: fixed exit status of test suitesAndrew Tridgell2010-10-073-6/+12
| | | | use RUN_COMMAND() to handle signal errors and exit status
* s3: Adding TCP_KEEPALIVE_THRESHOLD and TCP_KEEPALIVE_ABORT_THRESHOLD to ↵Ira Cooper2010-10-071-0/+6
| | | | | | | | | the list of accepted socket settings. These are both exclusive to Solaris/OpenSolaris. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Thu Oct 7 00:26:39 UTC 2010 on sn-devel-104
* tevent: Only call handlers that ask for eventsVolker Lendecke2010-10-061-1/+1
| | | | | | | | | | The s3 libsmbclient puts two different handlers on a single fd for readability and writability. With select this works fine, however without this patch we unconditionally call the write handler even if the socket is only readable. We should have called the read handler instead. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Oct 6 23:40:24 UTC 2010 on sn-devel-104
* Fix crash in SMB2 rename found by gentest. We must always have an lcompJeremy Allison2010-10-061-1/+1
| | | | | | in the destination struct for a rename, so set the flag appropriately. Jeremy.
* maintainers: delete the old MAINTAINERS fileAndrew Tridgell2010-10-061-40/+0
| | | | | | | this contains some quite obsolete information Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Wed Oct 6 22:58:52 UTC 2010 on sn-devel-104
* maintainers: added initial MAINTAINERS.txtAndrew Tridgell2010-10-061-0/+152
| | | | | | | | initially with no subsystems maintained. Some initial maintainers will be added soon after discussion. Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Wed Oct 6 22:07:01 UTC 2010 on sn-devel-104
* s3: Make the write end of the echo responder pipe non-blockingVolker Lendecke2010-10-061-0/+1
| | | | | | | | Without this, we can get a writable pipe end, but the writev call on the pipe will block. Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Wed Oct 6 13:57:30 UTC 2010 on sn-devel-104
* s3-build: use the simpler "make bin/smbtorture" for s4 tortureAndrew Tridgell2010-10-061-2/+2
| | | | | | | and the same for bin/ndrdump Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Wed Oct 6 12:58:21 UTC 2010 on sn-devel-104
* waf: allow for commands like "make bin/smbtorture"Andrew Tridgell2010-10-062-0/+9
| | | | I finally worked out the GNU make syntax for this
* s3-spoolss: added another intermittent failure to knownfailAndrew Tridgell2010-10-061-0/+1
| | | | | Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Wed Oct 6 11:55:00 UTC 2010 on sn-devel-104
* autobuild: only add autobuild.log if it existsAndrew Tridgell2010-10-061-1/+2
| | | | this makes running autobuild on other than sn-devel easier
* waf: fixed some python3.x portability issuesAndrew Tridgell2010-10-067-10/+18
| | | | | these have crept into the tree over time. Maybe we should add testing of a range of python versions to autobuild?
* waf: update to waf version 1.5.19Andrew Tridgell2010-10-062-1/+1
| | | | | this includes a number of perforance improvements and bug fixes. Thanks to Thomas for all the recent improvements!
* s4:samldb LDB module - remove "type" parameter of "samldb_fill_object"Matthias Dieter Wallnöfer2010-10-061-6/+9
| | | | | | | It's a bit redundant given that we have the "type" variable on "ac". Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Wed Oct 6 10:20:45 UTC 2010 on sn-devel-104
* idtree: fix right shift of signed ints, crash on large ids on AIXRusty Russell2010-10-061-1/+1
| | | | | | | | | | | | | | | | | Right-shifting signed integers in undefined; indeed it seems that on AIX with their compiler, doing a 30-bit shift on (INT_MAX-200) gives 0, not 1 as we might expect. The obvious fix is to make id and oid unsigned: l (level count) is also logically unsigned. (Note: Samba doesn't generally get to ids > 1 billion, but ctdb does) Reported-by: Chris Cowan <cc@us.ibm.com> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Autobuild-User: Rusty Russell <rusty@samba.org> Autobuild-Date: Wed Oct 6 08:31:09 UTC 2010 on sn-devel-104
* s4-heimdal: disable using the system compile_et for nowAndrew Tridgell2010-10-061-2/+5
| | | | | | | | | | just checking that compile_et exists isn't enough. It has to actually work. Quite a few build farm systems have /usr/bin/compile_et, but it gets link errors when you try to use it (missing symbols et_list_lock and et_list_unlock) Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Wed Oct 6 07:48:16 UTC 2010 on sn-devel-104
* waf: fixed the problem with com_err on Ubuntu 9.04Andrew Tridgell2010-10-062-22/+32
| | | | | | | | this changes CHECK_BUNDLED_SYSTEM() to honor the checkfunctions and headers options even for libraries found with pkgconfig. Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Wed Oct 6 05:06:42 UTC 2010 on sn-devel-104
* s4-test: Fix PYTHONPATH for samba4.schemaInfo.python(dc) testKamen Mazdrashki2010-10-061-1/+1
| | | | | Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Wed Oct 6 02:54:56 UTC 2010 on sn-devel-104
* Fix crash in SMB2 rename found by gentest. We must always have an lcompJeremy Allison2010-10-061-1/+1
| | | | | | | | | in the destination struct for a rename, so set the flag appropriately. Jeremy. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Wed Oct 6 00:29:51 UTC 2010 on sn-devel-104
* heimdal-build: Require com_err library to provide com_right_r function.Jelmer Vernooij2010-10-051-1/+1
|
* land: Fix stage description during failure.Jelmer Vernooij2010-10-051-2/+2
|
* land: Print out failed test in case of subunit failures.Jelmer Vernooij2010-10-051-3/+30
|
* heimdal-com_err: fix the build for systems with older 'com_err' libraryKamen Mazdrashki2010-10-051-1/+1
| | | | | Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Tue Oct 5 21:36:41 UTC 2010 on sn-devel-104
* selftest: make it more obvious we only expect the printjob tests to fail.Günther Deschner2010-10-051-1/+2
| | | | Guenther
* Revert "libndr: fix "excess elements in struct initializer" warning."Günther Deschner2010-10-051-1/+0
| | | | This reverts commit a416ff26d6ada4ee96bf3963866f67d5788162d1.
* s3-waf: add slightly different mkbuildoptions awk script for waf.Günther Deschner2010-10-052-1/+274
| | | | | | | | | This allows to run make test (w/o smbtorture4 for now) using waf. Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Oct 5 18:24:55 UTC 2010 on sn-devel-104
* s3-waf: use more of the NDR_ subsystems.Günther Deschner2010-10-051-8/+7
| | | | Guenther
* Fix bug 7704 - Possible error in fix to rpc_server/srv_spoolss_nt.c.Jeremy Allison2010-10-051-1/+1
| | | | | | | From pjb1008@cam.ac.uk - Service numbers start from 0. Autobuild-User: Jeremy Allison <jra@samba.org> Autobuild-Date: Tue Oct 5 17:32:34 UTC 2010 on sn-devel-104
* s4:subtree_delete LDB module - remove the DN from an error messageMatthias Dieter Wallnöfer2010-10-051-3/+6
| | | | | | | | | | | It may looks funny but the DN output prevents older ADUC versions (tested with release 2000) to perform subtree deletes properly. Version 2008 has this fixed. Additionally some smaller changes ("%u" for printing unsigned integers, module name prefix, nicer line-wrap). Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Tue Oct 5 16:48:19 UTC 2010 on sn-devel-104
* s4:setup/provision_rootdse_add.ldif - provide informations in the right orderMatthias Dieter Wallnöfer2010-10-052-3/+3
| | | | | | | Doesn't change much - but nicer to read. Btw: is the testdata/samba3 stuff still needed ("provision_samba3sam.ldif"...)? It seems a bit outdated.
* s3-selftest: enable smb2 torture tests against samba3.Günther Deschner2010-10-053-1/+6
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Oct 5 14:38:07 UTC 2010 on sn-devel-104
* s4-selftest: move spoolss to skip list.Günther Deschner2010-10-052-1/+1
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Oct 5 13:51:28 UTC 2010 on sn-devel-104
* libndr: fix "excess elements in struct initializer" warning.Günther Deschner2010-10-051-0/+1
| | | | Guenther
* s3-reg_parse: fix uninitialized variable in srprs_key().Günther Deschner2010-10-051-1/+1
| | | | Guenther
* s3-libndr: handle NDR_ERR_IPV6ADDRESS case in ndr_errstr().Günther Deschner2010-10-051-0/+3
| | | | Guenther
* land: Fix failure detection.Jelmer Vernooij2010-10-051-33/+39
| | | | | | | What subprocess.Popen.poll() returns is a exit code, not a status. Autobuild-User: Jelmer Vernooij <jelmer@samba.org> Autobuild-Date: Tue Oct 5 13:05:25 UTC 2010 on sn-devel-104
* land: Simplify retry checker.Jelmer Vernooij2010-10-051-20/+30
|
* s4-provision: Reset "debuglevel" after "provision" take placeKamen Mazdrashki2010-10-051-7/+9
| | | | | | | | Otherwise "provision" resets our current debug level and we don't get debug messages we may expect onwards Autobuild-User: Kamen Mazdrashki <kamenim@samba.org> Autobuild-Date: Tue Oct 5 11:32:50 UTC 2010 on sn-devel-104
* s4-libnet_vampire: Reparent result.lp_ctx - we have already referenced itKamen Mazdrashki2010-10-051-1/+1
| | | | | which leads to warning that we are trying to steal a context with references
* s4-test: Fix PYTHONPATH for python.drs_ testsKamen Mazdrashki2010-10-051-2/+2
|
* s4-test: Use absolute path for 'samba4srcdir'Kamen Mazdrashki2010-10-051-1/+1
|
* s3-waf: convert NSS_INFO into a subsystem.Günther Deschner2010-10-052-8/+52
| | | | | | | | | We don't do the fancy symlinking to idmap modules though. Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Oct 5 10:50:53 UTC 2010 on sn-devel-104
* s3-waf: add RPCCLI_WINREG subsystem.Günther Deschner2010-10-051-11/+9
| | | | Guenther
* s3: Stop using the write cache after an oplock breakVolker Lendecke2010-10-051-0/+1
| | | | | Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue Oct 5 10:09:38 UTC 2010 on sn-devel-104
* s4:samldb LDB module - simplify/unify the message handling on add and modify ↵Matthias Dieter Wallnöfer2010-10-051-28/+54
| | | | | | | | | | | | | | operations - Perform only shallow copies (should be enough) - Perform only one copy per operation (also on modifications) - Build a new request on modify operations if needed ("modified" flag) - this makes it look cleaner - Fix an important bug: the "el" pointers could have changed after modifications. Therefore we have to refresh them on the FLAG_DELETE checks Autobuild-User: Matthias Dieter Wallnöfer <mdw@samba.org> Autobuild-Date: Tue Oct 5 09:24:57 UTC 2010 on sn-devel-104
* s4:samldb LDB module - assign better memory contexts on two placesMatthias Dieter Wallnöfer2010-10-051-2/+2
|
* s4:kdc - use "userAccountControl" always unsignedMatthias Dieter Wallnöfer2010-10-053-5/+5
| | | | It doesn't change much but it's nicer to have it consistent.