diff options
author | Michael Adam <obnox@samba.org> | 2010-05-25 01:00:37 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-05-25 10:35:31 +0200 |
commit | 0fe1ff99a1aa6858ec0f1cfb1130b801238fc8e2 (patch) | |
tree | 3f4c1e5ee4b8bb5d921bad98ba575e3bc3970b8f /source3/utils | |
parent | 552e505cee966e7f734fb6bc8f5991bb5b73ba32 (diff) | |
download | samba-0fe1ff99a1aa6858ec0f1cfb1130b801238fc8e2.tar.gz samba-0fe1ff99a1aa6858ec0f1cfb1130b801238fc8e2.tar.bz2 samba-0fe1ff99a1aa6858ec0f1cfb1130b801238fc8e2.zip |
s3:registry: move reg_objects.h to registry/ and use it only where needed
Every place outside of registry/ where this is used, should probably
be changed to use pure reg_api.c code.
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_rpc_printer.c | 1 | ||||
-rw-r--r-- | source3/utils/net_rpc_registry.c | 1 | ||||
-rw-r--r-- | source3/utils/profiles.c | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/source3/utils/net_rpc_printer.c b/source3/utils/net_rpc_printer.c index 8822913396..7d8c67fb4d 100644 --- a/source3/utils/net_rpc_printer.c +++ b/source3/utils/net_rpc_printer.c @@ -21,6 +21,7 @@ #include "../librpc/gen_ndr/cli_spoolss.h" #include "rpc_client/cli_spoolss.h" #include "registry.h" +#include "registry/reg_objects.h" /* support itanium as well */ static const struct print_architecture_table_node archi_table[]= { diff --git a/source3/utils/net_rpc_registry.c b/source3/utils/net_rpc_registry.c index db2e8d6205..7f8f5bb6ff 100644 --- a/source3/utils/net_rpc_registry.c +++ b/source3/utils/net_rpc_registry.c @@ -24,6 +24,7 @@ #include "regfio.h" #include "../librpc/gen_ndr/cli_winreg.h" #include "registry/reg_util_marshalling.h" +#include "registry/reg_objects.h" /******************************************************************* connect to a registry hive root (open a registry policy) diff --git a/source3/utils/profiles.c b/source3/utils/profiles.c index f793704be5..ce330a8b16 100644 --- a/source3/utils/profiles.c +++ b/source3/utils/profiles.c @@ -20,7 +20,7 @@ */ #include "includes.h" -#include "reg_objects.h" +#include "registry/reg_objects.h" #include "regfio.h" /* GLOBAL VARIABLES */ |