summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* s4:irpc: optionaly pass the security_token via IRPC requests.Stefan Metzmacher2010-09-272-0/+8
| | | | metze
* s3: Make file_fnum staticVolker Lendecke2010-09-272-2/+1
|
* s3: Remove some unused codeVolker Lendecke2010-09-272-53/+0
|
* s3: Fix some commentsVolker Lendecke2010-09-271-2/+2
|
* Remove talloc_autofree_context() from pm_processVolker Lendecke2010-09-271-1/+1
| | | | | This would be a classic for talloc_tos(), InFile is freed a few lines down. But unfortunately S4 does not support talloc_tos().
* Lift talloc_autofree_context() from OpenConfFile()Volker Lendecke2010-09-271-3/+3
|
* libsmbconf: parse an empty share as empty share, not as NULL.Michael Adam2010-09-271-5/+1
| | | | | | | | | This fixes a segfault in net conf import: Importing a text file with an empty share resulted in a segfault. Now this creates an empty share in registry config, just as it should. Thanks to Gregor Beck <gbeck@sernet.de> for reporting.
* s3:registry: proposed aix build fix for reg_parse_internalGregor Beck2010-09-271-1/+1
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s4:torture/ldap: close connections with an UnbindRequestStefan Metzmacher2010-09-271-0/+29
| | | | | | | metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Sep 27 07:14:23 UTC 2010 on sn-devel-104
* LDAP-BASIC: test AbandonRequestStefan Metzmacher2010-09-271-0/+41
| | | | metze
* s4:libcli/ldap: fix sending oneway requestsStefan Metzmacher2010-09-271-18/+26
| | | | metze
* libcli/ldap: correctly marshall LDAP Unbind PDUsStefan Metzmacher2010-09-271-0/+2
| | | | metze
* s3-waf: fix dependencies to NDR_XATTR.Günther Deschner2010-09-272-9/+4
| | | | Guenther
* s3-waf: link PReg parser only in registry client side extension.Günther Deschner2010-09-272-4/+1
| | | | Guenther
* s3-waf: NDR_SRVSVC is defined now from the main librpc wscript_build.Günther Deschner2010-09-271-4/+0
| | | | Guenther
* waf: add more NDR subsystems for shared IDL files.Günther Deschner2010-09-272-2/+42
| | | | Guenther
* s4-waf: remove NDR-SRVSVC alias.Günther Deschner2010-09-272-1/+10
| | | | | | Thanks tridge, this was driving me nuts... Guenther
* s4-smbtorture: remove unneeded dcerpc_mgmt alias.Günther Deschner2010-09-273-3/+2
| | | | Guenther
* s4-drs: fixed comment in getncchanges codeAndrew Tridgell2010-09-271-1/+1
| | | | | Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Sep 27 04:54:43 UTC 2010 on sn-devel-104
* s4-gensec: fixed a valgrind error in gensecAndrew Tridgell2010-09-261-12/+2
| | | | Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
* lib/util: change tevent_req_nterror() to a macroStefan Metzmacher2010-09-272-3/+10
| | | | | | | | | | This way we can record where a tevent_req was finished by tevent_req_nterror(). metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Sep 27 03:18:14 UTC 2010 on sn-devel-104
* s4-dns: use the generated krb5.conf in samba_dnsupdateAndrew Tridgell2010-09-271-0/+5
| | | | | | | this gives one less thing that an admin can get wrong Autobuild-User: Andrew Tridgell <tridge@samba.org> Autobuild-Date: Mon Sep 27 02:35:29 UTC 2010 on sn-devel-104
* s4-provision: fixed the generation of the krb5.conf for vampireAndrew Tridgell2010-09-271-6/+6
| | | | we need a correct krb5.conf for nsupdate from bind9
* s3-waf: move SERVICES into a subsystem.Günther Deschner2010-09-271-5/+13
| | | | Guenther
* s3-waf: add PRINTING subsystems.Günther Deschner2010-09-271-12/+21
| | | | Guenther
* s3-waf: add two more REGF based subsystems.Günther Deschner2010-09-271-9/+14
| | | | Guenther
* tdb: fix non-WAF build, commit 1.2.6 ABI file.Rusty Russell2010-09-272-1/+62
| | | | | | Sorry Jeremy. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
* tdb: TDB_INCOMPATIBLE_HASH, to allow safe changing of default hash.Rusty Russell2010-09-276-6/+23
| | | | | | | | | | | | | | | | This flag to tdb_open/tdb_open_ex effects creation of a new database: 1) Uses the Jenkins lookup3 hash instead of the old gdbm hash if none is specified, 2) Places a non-zero field in header->rwlocks, so older versions of TDB will refuse to open it. This means that the caller (ie Samba) can set this flag to safely change the hash function. Versions of TDB from this one on will either use the correct hash or refuse to open (if a different hash is specified). Older TDB versions will see the nonzero rwlocks field and refuse to open it under any conditions. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
* tdb: automatically identify Jenkins hash tdbsRusty Russell2010-09-271-14/+27
| | | | | | | | | | If the caller to tdb_open_ex() doesn't specify a hash, and tdb_old_hash doesn't match, try tdb_jenkins_hash. This was Metze's idea: it makes life simpler, especially with the upcoming TDB_INCOMPATIBLE_HASH flag. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
* tdb: add Bob Jenkins lookup3 hash as helper hash.Rusty Russell2010-09-277-18/+447
| | | | | | | | | | This is a better hash than the default: shipping it with tdb makes it easy for callers to use it as the hash by passing it to tdb_open_ex(). This version taken from CCAN and modified, which took it from http://www.burtleburtle.net/bob/c/lookup3.c. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
* s3-waf: rework static and shared list handling a little.Günther Deschner2010-09-271-17/+20
| | | | Guenther
* waf: add delimiter argument to TO_LIST.Günther Deschner2010-09-271-2/+2
| | | | Guenther
* s3-waf: add missing IDMAP modules.Günther Deschner2010-09-272-1/+18
| | | | Guenther
* s3-waf: rework CLDAP and LIBCLI_LDAP subsystems.Günther Deschner2010-09-272-9/+18
| | | | Guenther
* s3-waf: move gpext subsystem to libgpo/gpext/wscript_build.Günther Deschner2010-09-272-35/+36
| | | | Guenther
* s3-waf: move perfcount subsystem to modules/wscript_build.Günther Deschner2010-09-272-23/+23
| | | | Guenther
* s3-waf: move charset subsystem to modules/wscript_build.Günther Deschner2010-09-272-41/+43
| | | | Guenther
* s3-waf: move idmap subsystem to winbindd/wscript_build.Günther Deschner2010-09-272-77/+77
| | | | Guenther
* s3-waf: move pdb subsystem to pdb/wscript_build.Günther Deschner2010-09-272-50/+51
| | | | Guenther
* s3-waf: move auth subsystem to auth/wscript_build.Günther Deschner2010-09-272-83/+85
| | | | Guenther
* s3-waf: support --with-acl-support, at least for posix acls.Günther Deschner2010-09-272-22/+55
| | | | Guenther
* s3-waf: move VFS subsystem to modules/wscript_build.Günther Deschner2010-09-272-389/+403
| | | | Guenther
* s3-waf: add some module specific functions for s3 waf build.Günther Deschner2010-09-272-0/+23
| | | | | | Thanks to Kai. Guenther
* s3-waf: convert VFS into a subsystem.Günther Deschner2010-09-271-0/+340
| | | | Guenther
* s3-waf: convert GPEXT into a subsystem.Günther Deschner2010-09-271-0/+27
| | | | Guenther
* s3-waf: convert PERFCOUNT into a subsystem.Günther Deschner2010-09-271-0/+20
| | | | Guenther
* s3-waf: convert CHARSET into a subsystem.Günther Deschner2010-09-271-0/+34
| | | | Guenther
* s3-waf: convert IDMAP into subsystem.Günther Deschner2010-09-271-0/+55
| | | | Guenther
* s3-waf: convert PDB into subsystem.Günther Deschner2010-09-271-0/+41
| | | | Guenther
* s3-waf: convert AUTH into subsystem.Günther Deschner2010-09-271-0/+59
| | | | Guenther