From 0afc83c25556fc8162415738d1e8743009c4837c Mon Sep 17 00:00:00 2001 From: Gregor Beck Date: Mon, 20 Sep 2010 15:01:40 +0200 Subject: s3-net: add command registry convert Signed-off-by: Michael Adam --- source3/utils/net_registry.c | 61 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) (limited to 'source3/utils') diff --git a/source3/utils/net_registry.c b/source3/utils/net_registry.c index 3c2e20e6ba..1139e45bef 100644 --- a/source3/utils/net_registry.c +++ b/source3/utils/net_registry.c @@ -1039,8 +1039,61 @@ done: } /**@}*/ +/******************************************************************************/ +/** + * @defgroup net_registry_convert Convert + * @ingroup net_registry + * @{ + */ + +static int net_registry_convert(struct net_context *c, int argc, + const char **argv) +{ + int ret; + void* mem_ctx; + const char* in_opt = NULL; + const char* out_opt = NULL; + + if (argc < 2 || argc > 4|| c->display_usage) { + d_printf("%s\n%s", + _("Usage:"), + _("net registry convert [in_opt] [out_opt]\n" + "net registry convert [out_opt]\n")); + d_printf("%s\n%s", + _("Example:"), + _("net registry convert in.reg out.reg regedit4,enc=CP1252\n")); + return -1; + } + + mem_ctx = talloc_stackframe(); + + switch (argc ) { + case 2: + break; + case 3: + out_opt = argv[2]; + break; + case 4: + out_opt = argv[3]; + in_opt = argv[2]; + break; + default: + assert(false); + } + + + ret = reg_parse_file(argv[0], (struct reg_parse_callback*) + reg_format_file(mem_ctx, argv[1], out_opt), + in_opt); + + talloc_free(mem_ctx); + + return ret; +} +/**@}*/ /******************************************************************************/ + int net_registry(struct net_context *c, int argc, const char **argv) { int ret = -1; @@ -1150,6 +1203,14 @@ int net_registry(struct net_context *c, int argc, const char **argv) N_("net registry export\n" " Export .reg file") }, + { + "convert", + net_registry_convert, + NET_TRANSPORT_LOCAL, + N_("Convert .reg file"), + N_("net registry convert\n" + " Convert .reg file") + }, { NULL, NULL, 0, NULL, NULL } }; -- cgit