From ffd91e763ec3da1b9dd8104b2a502dbdcdfd1875 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 5 Oct 2007 20:08:48 +0000 Subject: r25526: Fix usage output. Guenther (This used to be commit 31a0bf7b8cae3322a379dc147be6493441c2f13d) --- source3/utils/net_rpc_registry.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/utils') diff --git a/source3/utils/net_rpc_registry.c b/source3/utils/net_rpc_registry.c index b228cc1478..03a773225e 100644 --- a/source3/utils/net_rpc_registry.c +++ b/source3/utils/net_rpc_registry.c @@ -614,8 +614,8 @@ static NTSTATUS rpc_registry_enumerate_internal(const DOM_SID *domain_sid, struct registry_value **values = NULL; if (argc != 1 ) { - d_printf("Usage: net rpc enumerate [recurse]\n"); - d_printf("Example: net rpc enumerate 'HKLM\\Software\\Samba'\n"); + d_printf("Usage: net rpc registry enumerate [recurse]\n"); + d_printf("Example: net rpc registry enumerate 'HKLM\\Software\\Samba'\n"); return NT_STATUS_OK; } @@ -716,7 +716,7 @@ static NTSTATUS rpc_registry_save_internal(const DOM_SID *domain_sid, struct winreg_String filename; if (argc != 2 ) { - d_printf("Usage: net rpc backup \n"); + d_printf("Usage: net rpc registry backup \n"); return NT_STATUS_OK; } @@ -882,7 +882,7 @@ static int rpc_registry_dump( int argc, const char **argv ) REGF_NK_REC *nk; if (argc != 1 ) { - d_printf("Usage: net rpc dump \n"); + d_printf("Usage: net rpc registry dump \n"); return 0; } @@ -926,7 +926,7 @@ static int rpc_registry_copy( int argc, const char **argv ) int result = 1; if (argc != 2 ) { - d_printf("Usage: net rpc copy \n"); + d_printf("Usage: net rpc registry copy \n"); return 0; } -- cgit