diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-12-26 21:58:31 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:47:46 -0500 |
commit | 09c44f6cae89621871d2e5475b0c0f99c25804b4 (patch) | |
tree | 053b1712c035bb63361bf549ba3bf13491412c3c /source4/lib/registry/tools | |
parent | 6aafed9600a3fa05932668c70fc0e20f3724dab6 (diff) | |
download | samba-09c44f6cae89621871d2e5475b0c0f99c25804b4.tar.gz samba-09c44f6cae89621871d2e5475b0c0f99c25804b4.tar.xz samba-09c44f6cae89621871d2e5475b0c0f99c25804b4.zip |
r12500: Use init functions explicitly in a few more places. 'gensec' and 'librpc'
are the only two subsystems left to convert.
(This used to be commit f6bbc72996aeee8607fc583140fd60be0e06e969)
Diffstat (limited to 'source4/lib/registry/tools')
-rw-r--r-- | source4/lib/registry/tools/regdiff.c | 2 | ||||
-rw-r--r-- | source4/lib/registry/tools/regpatch.c | 2 | ||||
-rw-r--r-- | source4/lib/registry/tools/regshell.c | 2 | ||||
-rw-r--r-- | source4/lib/registry/tools/regtree.c | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/source4/lib/registry/tools/regdiff.c b/source4/lib/registry/tools/regdiff.c index 7c6a5d75aea..3720298df8e 100644 --- a/source4/lib/registry/tools/regdiff.c +++ b/source4/lib/registry/tools/regdiff.c @@ -48,6 +48,8 @@ int main(int argc, char **argv) regdiff_init_subsystems; + registry_init(); + pc = poptGetContext(argv[0], argc, (const char **) argv, long_options,0); while((opt = poptGetNextOpt(pc)) != -1) { diff --git a/source4/lib/registry/tools/regpatch.c b/source4/lib/registry/tools/regpatch.c index 8f86d8a8f00..2cc1507b3e3 100644 --- a/source4/lib/registry/tools/regpatch.c +++ b/source4/lib/registry/tools/regpatch.c @@ -46,6 +46,8 @@ int main(int argc, char **argv) regpatch_init_subsystems; + registry_init(); + pc = poptGetContext(argv[0], argc, (const char **) argv, long_options,0); while((opt = poptGetNextOpt(pc)) != -1) { diff --git a/source4/lib/registry/tools/regshell.c b/source4/lib/registry/tools/regshell.c index ef5c598989b..52bda8aa423 100644 --- a/source4/lib/registry/tools/regshell.c +++ b/source4/lib/registry/tools/regshell.c @@ -419,6 +419,8 @@ static char **reg_completion(const char *text, int start, int end) regshell_init_subsystems; + registry_init(); + pc = poptGetContext(argv[0], argc, (const char **) argv, long_options,0); while((opt = poptGetNextOpt(pc)) != -1) { diff --git a/source4/lib/registry/tools/regtree.c b/source4/lib/registry/tools/regtree.c index 8856c4d61c5..01e4f92f4a6 100644 --- a/source4/lib/registry/tools/regtree.c +++ b/source4/lib/registry/tools/regtree.c @@ -101,6 +101,8 @@ int main(int argc, char **argv) regtree_init_subsystems; + registry_init(); + pc = poptGetContext(argv[0], argc, (const char **) argv, long_options,0); while((opt = poptGetNextOpt(pc)) != -1) { |