summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-03-01s4:torture/rpc: make use of explicit dcerpc_*_recv functionsStefan Metzmacher5-7/+7
metze
2010-03-01s4:winbind: make use of explicit dcerpc_*_recv functionsStefan Metzmacher9-17/+17
metze
2010-03-01s4:dsdb/repl: make use of explicit dcerpc_*_recv functionsStefan Metzmacher2-4/+4
metze
2010-03-01s4:libnet: make use of explicit dcerpc_*_recv functionsStefan Metzmacher10-41/+40
metze
2010-03-01s4:libnet_become_dc: make use of explicit dcerpc_*_recv functionsStefan Metzmacher1-71/+9
metze
2010-03-01pidl:NDR/Client.pm: generate explicit _recv functionsStefan Metzmacher1-0/+32
metze
2010-03-01s4-smbtorture: add stricter SetPrinterDataEx tests to spoolss tests.Günther Deschner1-27/+67
Guenther
2010-03-01s4-smbtorture: add test_SetPrinterDataEx to RPC-SPOOLSS-PRINTER.Günther Deschner1-0/+4
Guenther
2010-03-01s4-smbtorture: return needed size pointer from test_GetPrinterDataEx.Günther Deschner1-5/+10
Guenther
2010-03-01s4-smbtorture: test at least three different regtypes in test_SetPrinterDataEx.Günther Deschner1-6/+41
Guenther
2010-03-01s3: Add connections_forall_read()Volker Lendecke7-21/+60
In a cluster, this makes a large difference: For r/w traverse, we have to do a fetch_locked on every record which for most users of connections_forall is just overkill.
2010-03-01s3: Make the difference between r/o and r/w in connections_db_ctx more obviousVolker Lendecke1-9/+4
2010-03-01s3: Make connections_forall open connections.tdb r/wVolker Lendecke1-1/+7
connections_forall is called from count_current_connections() which potentially deletes dead records. This needs r/w access to connections.tdb. connections_traverse says it does not provide this. Does not really matter in the smbd case, because we have opened it before r/w, so this is "just" cleanup.
2010-03-01selftest/gdb_backtrace: call "info locals" tooStefan Metzmacher1-0/+1
metze
2010-03-01s4/rodc: Implement samdb_rodc with ldb contextAnatoliy Atanasov3-9/+63
2010-03-01s4/libnet: Fix misleading commentAnatoliy Atanasov1-1/+1
2010-03-01s3: Remove unused "mypid" from count_current_connections() stateVolker Lendecke1-2/+0
2010-03-01python: Add 'make pylint' convenience rule.Jelmer Vernooij1-0/+5
2010-03-01General cleanups of python code, hinted by pyflakes.Jelmer Vernooij14-152/+124
2010-03-01Add 'pyflakes' rule.Jelmer Vernooij1-0/+5
2010-03-01ntacl: Use existing infrastructure.Jelmer Vernooij2-27/+27
2010-03-01Remove __contains__ from mock object for consistency with actualJelmer Vernooij1-3/+0
implementation.
2010-03-01getntacl: Remove manpage for removed utility.Jelmer Vernooij1-45/+0
2010-03-01Fix SharesContainer.__len__.Ricardo Jorge1-1/+1
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
2010-03-01More formatting fixes.Jelmer Vernooij2-85/+84
2010-03-01Fix formatting.Jelmer Vernooij2-906/+908
2010-03-01upgradeprovision: Remove unused imports, use shutil.rmtree rather thanJelmer Vernooij2-41/+18
rmall.
2010-03-01upgradeprovision: Move to pythondoc formatMatthieu Patou2-32/+205
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
2010-03-01upgradeprovision: Allow script to be called with pydocMatthieu Patou1-40/+42
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
2010-03-01upgrade provision: change the meaning of handle_security_desc to be similar ↵Matthieu Patou1-3/+3
to handle_special_case Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
2010-03-01upgradeprovision: code cleanupMatthieu Patou2-55/+64
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
2010-03-01upgradeprovision: split the big script to put reusable functions appartMatthieu Patou2-231/+268
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
2010-02-28s3: Use talloc_tos() in yield_connection()Volker Lendecke1-1/+2
2010-02-28s3: Remove unused count_all_current_connections()Volker Lendecke3-11/+0
2010-02-28s3: Fix the CHAIN1 torture testVolker Lendecke1-1/+9
I've tried to solve this just within cli_smb_recv(), but I could not find a way to sanely determine when we are receiving the last entry in the chain just from looking at the blob. This solves it in an a bit more brutal way...
2010-02-28tdb: If tdb_parse_record does not find a record, return -1 instead of 0Volker Lendecke2-1/+23
2010-02-28s3: Fix but 7145 -- duplicate sam and unix accountsVolker Lendecke2-0/+22
For me this survives the TESTS=posix_s3 POSIX_SUBTESTS="RPC-SAMR-LARGE-DC LOCAL-NSS-WRAPPER" make test reproducer. Günther, please check! Volker
2010-02-28s3: vfs_full_audit.c: implement negated vfs_ops in the success/failure listHolger Hetterich2-28/+38
Supports negated arguments in configuration like: full_audit:success = all !readdir !telldir !closedir Update the manpage accordingly. Part of BSO#4025
2010-02-27s3: Copy the mapping.c license header to mapping.hVolker Lendecke1-0/+22
We need some license header there. If this does incorrect copyright attributions, please correct this.
2010-02-26Fix one of the valgrind warnings from bug #6814 - Fixes for problems ↵Roel van Meer1-0/+8
reported by valgrind The timeval passed to event_add_to_select_args() must be initialized as event_add_to_select_args() uses a timeval_min() on this and next_event.
2010-02-26s4:ldb_dn: fix an uninitialized variable (found by make valgrindtest)Stefan Metzmacher1-1/+1
metze
2010-02-26s4:ldb_dn: remove dn->ext_linearized when ext_components is modified.Stefan Metzmacher1-3/+4
metze
2010-02-26s4:ldb_dn: reset dn->ext_comp_num in ldb_dn_explode()Stefan Metzmacher1-2/+2
metze
2010-02-26s4:dsdb/schema: fix validation of DNsStefan Metzmacher1-1/+0
ldb_dn_extended_filter() removes all but the listed components, I didn't noticed that when writting the code. Doing a ldb_dn_remove_extended_components(dn2) is wrong. This was hidden by some bugs in the ldb_dn code. metze
2010-02-26s4:provision.zone - fix port of "_ldap._tcp.gc._msdcs"Matthias Dieter Wallnöfer1-1/+1
2010-02-26s4:script/installmisc.sh - install "dns_update_list" to target setup folderMatthias Dieter Wallnöfer1-0/+1
2010-02-26.gitignore - ignore display of "mit_samba.so"Matthias Dieter Wallnöfer1-0/+1
2010-02-26spoolss: fix build and version in spoolss_PrinterInfo0 (aka ↵Günther Deschner1-2/+3
PRINTER_INFO_STRESS). Guenther
2010-02-26spoolss: add spoolss_Build to IDL.Günther Deschner4-5/+49
Guenther
2010-02-26s4-winbind: Fixed the memory context of tstream_bsd_existing()Andreas Schneider1-1/+1
Signed-off-by: Stefan Metzmacher <metze@samba.org>