summaryrefslogtreecommitdiff
path: root/source4/lib
AgeCommit message (Collapse)AuthorFilesLines
2008-10-18Use common detection function for zlib.Jelmer Vernooij1-26/+0
2008-10-17Merge branch 'master' of ssh://git.samba.org/data/git/samba into master-develAndrew Bartlett8-131/+170
2008-10-16Transform the sequence_number operation into a normal extended operation as ↵Simo Sorce8-131/+170
it should always have been. Make it also async so that it is not a special case.
2008-10-16Assert that the server provides allowedAttributes (etc) on each entryAndrew Bartlett1-2/+6
This attribute is critical for the operation of nearly all the Microsoft Mangement Console tools Andrew Bartlett
2008-10-15s4: fix registry/rpc.c after winreg changes.Günther Deschner1-5/+5
jelmer, can you check if this is ok? Guenther
2008-10-15winreg.idl: Sync ref change from Samba 3.Jelmer Vernooij1-1/+1
2008-10-15Merge branch 'master' of git://git.samba.org/sambaJelmer Vernooij1-2/+2
2008-10-14Share ndr_compression.c.Jelmer Vernooij1-1/+0
2008-10-14Fix very old bug in ASQSimo Sorce1-2/+2
2008-10-14Remove unused structures.Jelmer Vernooij2-188/+4
2008-10-13Revert chunk applied by mistake as part of the cosmetic fixes fromi MathiasSimo Sorce1-1/+1
2008-10-13Cosmetic corrections for the DSDB moduleMatthias Dieter Wallnöfer1-1/+1
This commit applies some cosmetic corrections for the DSDB (Directory Server Database).
2008-10-12Fix number of arguments for file_load() functions.Jelmer Vernooij1-2/+2
2008-10-12Remove gencache in Samba 4 - it's unused and behind on the Samba 3Jelmer Vernooij2-469/+0
version.
2008-10-12Move zlib to top-level root.Jelmer Vernooij200-54050/+0
2008-10-12Remove unused json code.Jelmer Vernooij46-43802/+0
2008-10-12Use common util_file code.Jelmer Vernooij3-3/+3
2008-10-12Fix include paths for files that aren't compiled - breaks dependencyJelmer Vernooij2-2/+2
file generation.
2008-10-12Fix warning, prototype.Jelmer Vernooij1-1/+1
2008-10-11Fix include paths to new location of libutil.Jelmer Vernooij11-14/+14
2008-10-11Move lib/util from source4 to top-level libutil.Jelmer Vernooij55-11069/+0
Conflicts: source4/Makefile
2008-10-11Provide malloc_array() in Samba 4.Jelmer Vernooij1-0/+9
2008-10-11Provide the same set of helper functions for DEBUG in Samba 3 and SambaJelmer Vernooij4-15/+25
4, even though the macros are still different. This makes it possible to use object code compiled with one DEBUG() macro from the other sourceX directory.
2008-10-08Fix subunit files location after cherrypicks.Jelmer Vernooij1-0/+1
2008-10-03Merge commit 'master/master'Andrew Tridgell2-24/+22
2008-10-03Fix regressions in patchfile after last patch, several other minor fixes.Matthias Dieter Wallnöfer1-22/+20
2008-10-02s4:lib/ldb: fix stupid <SID=...> dn parsing bugsStefan Metzmacher1-2/+2
metze
2008-09-30handle NULL strings in strchr_m() and strrchr_m()Andrew Tridgell1-0/+7
This is needed for the LSA server code which needs to cope with a NULL names passed to lsa_LookupNames3()
2008-09-30Merge branch 'master' of ssh://git.samba.org/data/git/sambaAndrew Tridgell4-34/+5
2008-09-30Use UTF8 rather than the possibly different UNIX charset.Matthias Dieter Wallnöfer1-3/+3
2008-09-30The author of the upstream code asked for this code to be GPLv2+ not GPLv3Andrew Tridgell1-1/+1
2008-09-30merged a bugfix for the idtree code from the Linux kernel. ThisAndrew Tridgell1-1/+13
matches commit 7aae6dd80e265aa9402ed507caaff4a5dba55069 in the kernel. Many thanks to Jim Houston for pointing out this fix to us
2008-09-30wmi: Use cli_credentials.Jelmer Vernooij2-14/+2
2008-09-30Remove ldb_module_wait implementation - ldb_module.wait() is gone.Jelmer Vernooij1-17/+0
2008-09-29s4:lib/ldb: disable sqlite3 backend always as it doesn't compile anymoreStefan Metzmacher1-3/+3
metze
2008-09-29LDB ASYNC: misc changesSimo Sorce1-12/+1
2008-09-29LDB ASYNC: ldb misc changesSimo Sorce2-54/+44
2008-09-29LDB ASYNC: core modulesSimo Sorce11-2152/+1534
2008-09-29LDB ASYNC: other backendsSimo Sorce3-582/+619
2008-09-29LDB ASYNC: ldb_tdb backendSimo Sorce4-315/+242
2008-09-29LDB ASYNC: Core filesSimo Sorce5-164/+489
2008-09-25Revert LDB return code patches from Matthias.Jelmer Vernooij18-109/+109
2008-09-24Cosmetic corrections for the LDB libraryMatthias Dieter Wallnöfer8-32/+32
This commit applies some cosmetic corrections for the LDB library.
2008-09-24Cosmetic corrections for the LDB backend modulesMatthias Dieter Wallnöfer8-75/+75
This commit applies some cosmetic corrections for the LDB backend modules.
2008-09-24Cosmetic corrections for the DSDB moduleMatthias Dieter Wallnöfer2-2/+2
This commit applies some cosmetic corrections for the DSDB (Directory Server Database).
2008-09-24Merge branch 'master' of ssh://git.samba.org/data/git/samba into cryptoJelmer Vernooij1-1/+4
2008-09-24Move source4/lib/crypto to lib/crypto.Jelmer Vernooij19-1597/+1
2008-09-24Fix python test, we can't check only the first member, because the orderSimo Sorce1-1/+4
is not guaranteed
2008-09-24Use new binary name in merged build.Jelmer Vernooij1-2/+1
2008-09-23Merge ldb_search() and ldb_search_exp_fmt() into a simgle function.Simo Sorce14-107/+84
The previous ldb_search() interface made it way too easy to leak results, and being able to use a printf-like expression turns to be really useful.