summaryrefslogtreecommitdiffstats
path: root/source3
Commit message (Collapse)AuthorAgeFilesLines
...
* s3:net: fix the exit code of net serverid listMichael Adam2011-10-111-1/+1
|
* s3:serverid: use dbwrap_traverse_read() in serverid_traverse_read()Michael Adam2011-10-111-1/+5
| | | | | | This also fixes the return value: originally the int return value of traverse_read which is a count of the records traversed or negative upon failure, was simply casted into a bool return value.
* s3:serverid: use dbwrap_traverse() in serverid_traverse()Michael Adam2011-10-111-1/+4
| | | | | | This also fixes the return value: Originally, the int returned by the traverse method, which is the count of the traverse was casted into a bool return value.
* s3:dbwrap_torture: convert to using wrapper functions onlyMichael Adam2011-10-111-7/+9
|
* s3:dbwrap_tool: convert to using wrapper functions onlyMichael Adam2011-10-111-9/+9
|
* s3:dbwrap: convert dbwrap_util.c to use dbwrap wrapper functionsMichael Adam2011-10-111-33/+41
|
* s3:dbwrap: use dbwrap_fetch_bystring() in dbwrap_fetch_[u]int32()Michael Adam2011-10-111-2/+6
|
* s3:dbwrap: convert dbwrap_fetch(), dbwrap_fetch_bystring() and ↵Michael Adam2011-10-1115-67/+93
| | | | dbwrap_fetch_bystring_upper() to NTSTATUS
* s3:dbwrap: add dbwrap_fetch_locked(), a wrapper for db->fetch_lockedMichael Adam2011-10-112-0/+10
|
* s3:dbwrap: add dbwrap_record_delete(), a wrapper for record->delete_recMichael Adam2011-10-112-0/+6
|
* s3:dbwrap: add dbwrap_record_store(), a wrapper for record->storeMichael Adam2011-10-112-0/+6
|
* s3:dbwrap: add get-functions for db_record key, value and private_dataMichael Adam2011-10-112-0/+19
|
* s3:dbwrap: add wrapper function dbwrap_get_seqnum()Michael Adam2011-10-112-0/+6
|
* s3:dbwrap: add wrappers for transactions start/cancel/commitMichael Adam2011-10-112-0/+18
|
* s3:dbwrap: add wrapper dbwrap_get_flags()Michael Adam2011-10-112-0/+6
|
* s3:dbwrap: fix db_rbt_traverse() to return the record count on successGregor Beck2011-10-111-5/+14
| | | | | | this makes it consistent with documented behaviour of tdb_traverse() Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add specific dbwrap_wipe() implementation to dbwrap_rbtGregor Beck2011-10-111-0/+14
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add specific dbwrap_wipe() implementation to dbwrap_tdbGregor Beck2011-10-111-0/+8
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add a commentMichael Adam2011-10-111-0/+4
|
* s3:dbwrap: add function dbwrap_wipe()Gregor Beck2011-10-114-0/+29
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add specific dbwrap_parse_record() implementation to dbwrap_rbtGregor Beck2011-10-111-0/+15
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: implement dbwrap_fallback_exists() with dbwrap_parse_record()Gregor Beck2011-10-111-10/+2
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: allow NULL parser for dbwrap_parse_record()Gregor Beck2011-10-111-0/+9
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: dbwrap_parse_record() should always return -1 on "not found"Gregor Beck2011-10-111-1/+1
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add function dbwrap_parse_record()Gregor Beck2011-10-112-0/+16
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add specific dbwrap_exists() implementation to dbwrap_rbtGregor Beck2011-10-111-0/+6
|
* s3:dbwrap: factor out db_rpt_search_internal()Gregor Beck2011-10-111-46/+43
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add specific dbwrap_exists() implementation to dbwrap_tdbGregor Beck2011-10-111-0/+8
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add function dbwrap_exists()Gregor Beck2011-10-112-0/+31
| | | | Signed-off-by: Michael Adam <obnox@samba.org>
* s3:dbwrap: add a wrapper dbwrap_traverse_read()Michael Adam2011-10-112-0/+22
|
* s3:dbwrap: change the dbwrap_traverse() wrapper to return the count in an ↵Michael Adam2011-10-113-6/+17
| | | | additional parameter
* s3:dbwrap: reorganize dbwrap.h someMichael Adam2011-10-111-5/+8
|
* s3:dbwrap: move dbwrap_traverse() to dbwrap.c, the core of the dbrwap subsystemMichael Adam2011-10-112-9/+8
|
* s3:dbwrap: move dbwrap_store() back to dbwrap.c, the core of the dbwrap ↵Michael Adam2011-10-112-16/+16
| | | | subsystem
* s3:dbwrap: move dbwrap_delete() back to dbwrap.c, the core of the dbwrap ↵Michael Adam2011-10-112-15/+14
| | | | subsystem
* s3:dbwrap: move dbwrap_fetch() back to dbwrap.c, the core of the dbwrap ↵Michael Adam2011-10-112-12/+14
| | | | subsystem
* s3:dbwrap: move the db_open_rbt() prototype to a new header dbwrap_rbt.hMichael Adam2011-10-1110-2/+37
|
* s3:dbwrap: move the db_open_file() prototype to a new header dbwrap_file.hMichael Adam2011-10-113-8/+37
|
* s3:dbwrap: move the db_open_tdb() prototype to a new header dbwrap_tdb.hMichael Adam2011-10-114-5/+35
|
* s3:dbwrap: move the db_open_ctdb() prototype to a new header dbwrap_ctdb.hMichael Adam2011-10-114-7/+38
|
* s3:vfs_acl_common: also parse xattr.NTACL version 1Stefan Metzmacher2011-10-111-0/+12
| | | | | | | | | | This is what the source4/ntvfs/posix code uses. It's also used at provision time to setup the sysvol permissions. metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Oct 11 14:16:25 CEST 2011 on sn-devel-104
* s3:wscript: add 'gssapi' dependecy to 'errors3'Stefan Metzmacher2011-10-111-1/+1
| | | | metze
* s3-passdb: split out passdb/pdb_ipa.h.Günther Deschner2011-10-114-4/+30
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Tue Oct 11 12:15:36 CEST 2011 on sn-devel-104
* s3-passdb: split out passdb/pdb_nds.h.Günther Deschner2011-10-114-15/+41
| | | | Guenther
* s3-passdb: split out passdb/pdb_ldap.h.Günther Deschner2011-10-116-18/+45
| | | | Guenther
* s3-smbldap: rearrange prototypes a bit.Günther Deschner2011-10-111-19/+18
| | | | Guenther
* auth: move gensec_start.c to the top levelAndrew Bartlett2011-10-111-1/+1
| | | | | | | This does not change who uses gensec for now, but makes it possible to write new gensec modules outside source4/ Andrew Bartlett
* auth: move credentials layer to the top levelAndrew Bartlett2011-10-111-1/+1
| | | | | | | | This will allow gensec_start.c to move to the top level. This does not change what code uses the cli_credentials code, but allows the gensec code to be more broadly. Andrew Bartlett
* libcli/smb Move CSC_POLICY_* definition to smb_constants.hAndrew Bartlett2011-10-111-6/+0
| | | | | | | This removes the duplicate definition between smb.h and lib/param/loadparm.c which in turn allows this file to be compiled with the s3 includes.h Andrew Bartlett
* lib/param move source4 param code to the top levelAndrew Bartlett2011-10-113-3/+3
| | | | | | | | | | | | This is done so that the lpcfg_ functions are available across the whole build, either with the struct loadparm_context loaded from an smb.conf directly or as a wrapper around the source3 param code. This is not the final, merged loadparm, but simply one step to make it easier to solve other problems while we make our slow progress on this difficult problem. Andrew Bartlett