summaryrefslogtreecommitdiffstats
path: root/source4/lib/registry
Commit message (Collapse)AuthorAgeFilesLines
* s4: Use same function signature for convert_* as s3.Jelmer Vernooij2009-03-013-13/+13
|
* Add allow_badcharcnv argument to all conversion function, forJelmer Vernooij2009-03-013-7/+7
| | | | consistency with Samba 3.
* s4:pyregistry: fix crash bugs introduced by ↵Stefan Metzmacher2009-02-061-2/+3
| | | | | | | | | e5a6eadd8214b56da34f733318a0fecaebbe5ef5 The registry api uses wild casts in the returned types, so we can't check the talloc name against the type used in the public api... metze
* s4:pyregistry: fix compiler warningsStefan Metzmacher2009-02-051-13/+16
| | | | metze
* s4:lib/registry: fix c++ warningsStefan Metzmacher2009-02-052-8/+8
| | | | metze
* s4:auth/credentials: the python bindings don't use swig anymoreStefan Metzmacher2009-02-021-1/+1
| | | | metze
* s4:lib/registry: s/new/nkeyStefan Metzmacher2009-02-021-3/+3
| | | | metze
* winreg: fix winreg_EnumValue callers.Günther Deschner2009-01-161-1/+1
| | | | Guenther
* Avoid using a utility header for Python replacements included in Samba,Jelmer Vernooij2009-01-081-1/+5
| | | | since this will not be shipped with talloc/tdb/tevent/etc.
* s3/s4 build: Fix Py_RETURN_NONE to work with python versions < 2.4Tim Prouty2009-01-071-1/+1
|
* py: Properly increase the reference counter of Py_None.Jelmer Vernooij2009-01-061-9/+9
|
* Changed code to use proper talloc context instead of NULL to control memory ↵scudette@gmail.com2009-01-022-2/+2
| | | | leak.
* Memory leak fixed due to accumulation of open reg keys.scudette@gmail.com2009-01-021-5/+8
|
* Fixes uninitialised access as reported by valgrind.scudette@gmail.com2009-01-021-1/+1
|
* s4:pyregistry: use tevent_context_init()Stefan Metzmacher2009-01-021-1/+1
| | | | metze
* s4:lib/tevent: rename structsStefan Metzmacher2008-12-2910-19/+19
| | | | | | | | | | | | | | | | | | | | list="" list="$list event_context:tevent_context" list="$list fd_event:tevent_fd" list="$list timed_event:tevent_timer" for s in $list; do o=`echo $s | cut -d ':' -f1` n=`echo $s | cut -d ':' -f2` r=`git grep "struct $o" |cut -d ':' -f1 |sort -u` files=`echo "$r" | grep -v source3 | grep -v nsswitch | grep -v packaging4` for f in $files; do cat $f | sed -e "s/struct $o/struct $n/g" > $f.tmp mv $f.tmp $f done done metze
* Add header for pyparam.Jelmer Vernooij2008-12-221-1/+1
|
* py: Fix initialisation of subtypes, fix segfaults.Jelmer Vernooij2008-12-211-0/+3
|
* Use plain Python C API for registry module, rather than SWIG.Jelmer Vernooij2008-12-183-19/+322
|
* Start converting registry python module to plain C rather than SWIG.Jelmer Vernooij2008-12-165-4870/+132
|
* s4:torture: fix the build with auto dependenciesStefan Metzmacher2008-11-161-1/+1
| | | | metze
* Remove use of global_loadparm during initialization of gensec.Jelmer Vernooij2008-11-021-1/+1
|
* Fix installation of Samba 4 during merged build.Jelmer Vernooij2008-10-301-1/+1
|
* Remove unused include param/param.h.Jelmer Vernooij2008-10-245-6/+1
|
* Regenerate SWIG files.Jelmer Vernooij2008-10-242-7/+6
|
* Remove more usages of global_loadparm.Jelmer Vernooij2008-10-246-25/+48
|
* Remove more uses of global_loadparm.Jelmer Vernooij2008-10-241-8/+4
|
* Remove iconv_convenience argument from convert_string{,talloc}() butJelmer Vernooij2008-10-243-7/+7
| | | | make them wrappers around convert_string{,talloc}_convenience().
* Fix double free.Jelmer Vernooij2008-10-211-1/+0
|
* Fix the build.Jelmer Vernooij2008-10-211-2/+2
|
* Revert "Registry server LDB backend: Don't make copies of the same type"Jelmer Vernooij2008-10-211-2/+2
| | | | | | | The original data pointer may go away so we do want to make copies in this case. This reverts commit 625359b2e266105022309df8985720108ecd6f67.
* Merge branch 'master' of ssh://git.samba.org/data/git/samba into regsrvJelmer Vernooij2008-10-2114-214/+307
|\ | | | | | | | | | | Conflicts: source4/lib/registry/ldb.c source4/rpc_server/winreg/rpc_winreg.c
| * Make sure prototypes are always included, make some functions static andJelmer Vernooij2008-10-201-0/+12
| | | | | | | | remove some unused functions.
| * Regenerate pidl output.Jelmer Vernooij2008-10-201-2/+2
| |
| * Add TALLOC_CTX pointer to strhex_to_data_blob for consistency with SambaJelmer Vernooij2008-10-181-2/+1
| | | | | | | | 3.
| * s4: fix registry/rpc.c after winreg changes.Günther Deschner2008-10-151-5/+5
| | | | | | | | | | | | jelmer, can you check if this is ok? Guenther
| * winreg.idl: Sync ref change from Samba 3.Jelmer Vernooij2008-10-151-1/+1
| |
| * Use common util_file code.Jelmer Vernooij2008-10-122-2/+2
| |
| * Fix include paths to new location of libutil.Jelmer Vernooij2008-10-113-4/+4
| |
| * Fix regressions in patchfile after last patch, several other minor fixes.Matthias Dieter Wallnöfer2008-10-031-22/+20
| |
| * Use UTF8 rather than the possibly different UNIX charset.Matthias Dieter Wallnöfer2008-09-301-3/+3
| |
| * Merge ldb_search() and ldb_search_exp_fmt() into a simgle function.Simo Sorce2008-09-231-10/+14
| | | | | | | | | | 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.
| * Registry client: Remove all conversion helper functionsMatthias Dieter Wallnöfer2008-09-211-44/+17
| |
| * Registry client library: Remove two elementar conversion functionsMatthias Dieter Wallnöfer2008-09-211-26/+4
| |
| * Revert "Registry tool "regtree": Removing an error message"Matthias Dieter Wallnöfer2008-09-211-0/+5
| | | | | | | | This reverts commit f37a57fa366e2b0d77f9c1bd232d42a0f2cceb52.
| * Registry client: Fixup the "patchfile" libraryMatthias Dieter Wallnöfer2008-09-211-38/+66
| | | | | | | | Rework and enhance the "patchfile" library (used in "regdiff")
| * Registry client: Implement the "winreg_QueryValue" callMatthias Dieter Wallnöfer2008-09-211-0/+48
| | | | | | | | This is needed for the registry patchfile library
| * Registry client library: Use "talloc_zero" to avoid uninitialized valuesMatthias Dieter Wallnöfer2008-09-211-3/+2
| |
| * Registry tool "regdiff": Add the event context for remote connectionsMatthias Dieter Wallnöfer2008-09-211-1/+1
| | | | | | | | Adds the event context for remote connections to make the tool working again.
| * Registry client library: Fixes the creation of new keysMatthias Dieter Wallnöfer2008-09-212-2/+3
| | | | | | | | Giving the right permissions