summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* s3:registry: move reg_objects.h to registry/ and use it only where neededMichael Adam2010-05-2524-3/+22
| | | | | Every place outside of registry/ where this is used, should probably be changed to use pure reg_api.c code.
* s3:registry: move non-reg_objects definitions from reg_objects.h to registry.hMichael Adam2010-05-252-119/+125
|
* s3:registry: hide definition of regval_ctr and regval_blob in reg_objects.cMichael Adam2010-05-252-12/+20
|
* s3:net rpc registry: use regval_ctr_init() instead of direct allocationMichael Adam2010-05-251-1/+2
|
* s3:profiles: use regval_ctr_init() instead of direct allocationMichael Adam2010-05-251-1/+2
|
* s3:rpcclient:spoolss: use regval_ctr/blob accessor functions.Michael Adam2010-05-251-16/+24
|
* s3:net_rpc_printer: use regval_blob/ctr accessor functionsMichael Adam2010-05-251-38/+53
|
* s3:net rpc printer: fix use of a possibly uninitialized variableMichael Adam2010-05-251-1/+1
|
* s3:nt_printing: use regval_ctr_init().Michael Adam2010-05-251-1/+4
|
* s3:srv_ntsvcs: use regval_ctr/blob accessor functionsMichael Adam2010-05-251-5/+5
|
* s3:services_db: use regval_ctr_init() instead of direct allocationMichael Adam2010-05-251-7/+14
|
* s3:libads:use regval_ctr/blob accessor functions in ldap_printer.cMichael Adam2010-05-251-34/+42
|
* s3:registry: use regval_ctr/blob accessor functoin in reg_eventlog.cMichael Adam2010-05-251-7/+13
|
* s3:registry: user regval_ctr/blob accessor functions in reg_backend_db.cMichael Adam2010-05-251-10/+10
|
* s3:registry: use regval_ctr/blob accessor functions in reg_api.cMichael Adam2010-05-251-33/+38
|
* s3:registry:reg_objects: add regval_ctr_set_seqnum()Michael Adam2010-05-252-0/+12
|
* s3:registry:reg_objects: add regval_ctr_get_seqnum()Michael Adam2010-05-252-0/+10
|
* s3:registry:reg_objects: add regval_ctr_init()Michael Adam2010-05-252-0/+18
|
* s3:registry: move definition of registry_hook to reg_init_full.c - it's only ↵Michael Adam2010-05-252-5/+5
| | | | user
* s3:registry: extract registry_pull/push_value prototypes into own headerMichael Adam2010-05-256-10/+36
| | | | reg_util_marshalling.h and use them only where needed.
* s3:registry: rename lib/util_reg_api.c to registry/reg_util_marshalling.cMichael Adam2010-05-252-2/+3
|
* s3:registry: rename reg_util.{c,h} to reg_util_internal.{c,h}Michael Adam2010-05-258-7/+7
|
* s3:registry: move prototype registry_create_admin_token() to new header ↵Michael Adam2010-05-255-2/+29
| | | | | | reg_util_token.h and use it only where necessary.
* s3:registry: move registry_create_admin_token() to new reg_util_token.cMichael Adam2010-05-253-38/+59
|
* s3:registry: extract reg_eventlog prototypes to header of their ownMichael Adam2010-05-255-6/+32
| | | | and use them only where needed.
* s3:registry: extract reg_perfcount prototypes into header of their own.Michael Adam2010-05-257-10/+38
| | | | And use them only when necessary.
* s3:registry: extraxt the reg_dispatcher prototypes into their own header.Michael Adam2010-05-255-22/+47
| | | | And use them only where needed.
* s3:registry: extract the reg_backend_db prototypes into their own header.Michael Adam2010-05-2512-18/+51
| | | | And use them only where needed.
* s3:registry: adapt callers of regval_ctr_addvalue to uint8 * instead of char *Michael Adam2010-05-2511-49/+49
|
* s3:registry: fix regval_ctr_addvalue() to take data as uint8 *, not char *.Michael Adam2010-05-252-5/+5
|
* s3:registry: fix data_p arg of regval_compose to be uint8 * instead of char *Michael Adam2010-05-252-2/+2
|
* s3:registry: extract the reg_util prototypes into their own header.Michael Adam2010-05-258-8/+35
| | | | And use them only where needed.
* s3:registry: remove superfluous comments from registry.hMichael Adam2010-05-251-28/+0
|
* s3:registry: extract the reg_util_legacy prototypes into their own header.Michael Adam2010-05-254-8/+47
| | | | And use them only where necessary.
* s3:registry: extract the reg_cachehook prototypes into their own header.Michael Adam2010-05-257-8/+34
| | | | And use them only where necessary.
* s3:registry: protect registry.h from multiple inclusionMichael Adam2010-05-251-0/+4
|
* s3:registry: add C to reg_cachehook, confessing considerable changes in 2008Michael Adam2010-05-251-0/+1
|
* s3:fix configure after change "add Werror_FLAGS for IBM's xlc"Michael Adam2010-05-251-0/+1
| | | | | | | | | For me, 24b3725407f1a67e13a7646d2e3f26ed1e4735ff broke configure. The fix in f634450b67d2a084c41a63c0e94eb47adb90e101 is not complete yet. After staring at the change a bit, tt seems to me that the code inserted was just misplaced by one line. Michael
* s3: fix the configure runBjörn Jacke2010-05-251-1/+0
|
* s3:configure: turn "error warnings" into errorsBjörn Jacke2010-05-241-1/+1
| | | | | By default "Missing argument(s)" is just an "error warning" for xlc :-) The change to turn "error warnings" into errors should fix bug #7427.
* s3:configure: add Werror_FLAGS for IBM's xlcBjörn Jacke2010-05-241-2/+14
|
* s4:dsdb_enum_group_mem - use "unsigned" countersMatthias Dieter Wallnöfer2010-05-242-7/+6
| | | | | | "size_t" counters aren't really needed here (we don't check data lengths). And we save the result in a certain "num_sids" variable which is of type "unsigned".
* s4:dsdb_lookup_rids - "unsigned" counters fit better than "signed" in this caseMatthias Dieter Wallnöfer2010-05-241-2/+2
|
* s4:dsdb_add_user - check the "cn"/"account_name" length (should be >= 1)Matthias Dieter Wallnöfer2010-05-241-7/+12
| | | | | | | This needed by the "cn_name_len"-1 accesses. And use a "size_t"-typed variable for storing it (length specificators should always be stored using "size_t" variables).
* Add in support for the NTLMSSP version reply.Jeremy Allison2010-05-242-4/+31
| | | | Jeremy.
* fix a typoVolker Lendecke2010-05-241-1/+1
|
* ldb-waf: Install manual pages for ldb in standalone build, installJelmer Vernooij2010-05-241-4/+23
| | | | python module.
* s4:winbind Give more detail on the parameters when reporting idmap failureAndrew Bartlett2010-05-241-1/+2
|
* s4:winbind Change idmap API to match that used by the source3/ idmap subsystemAndrew Bartlett2010-05-243-28/+62
| | | | | | | | | This makes it much easier to write an idmap module that bridges the gap. We should finish the change to the new API, but for the moment this choke point works for the conversion. Andrew Bartlett
* s4:winbind Change include guard so as not to conflict with idmap.h in source3Andrew Bartlett2010-05-242-3/+3
|