From: Dan Langille Date: Mon, 12 Jan 2009 06:23:31 +0000 (+0000) Subject: In my previous commit, I dropped the command from the help text. Fixed. X-Git-Tag: Release-3.0.0~318 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=988c51fa01ff6ff823b9adc9fdaa877e786b2f6c;p=bacula%2Fbacula In my previous commit, I dropped the command from the help text. Fixed. git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8359 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/dird/ua_cmds.c b/bacula/src/dird/ua_cmds.c index c8db5126ad..ec0ba6d43f 100644 --- a/bacula/src/dird/ua_cmds.c +++ b/bacula/src/dird/ua_cmds.c @@ -111,7 +111,7 @@ int quit_cmd(UAContext *ua, const char *cmd); struct cmdstruct { const char *key; int (*func)(UAContext *ua, const char *cmd); const char *help; const bool use_in_rs;}; static struct cmdstruct commands[] = { /* Can use it in Console RunScript*/ - { NT_("add"), add_cmd, _("[pool= storage= jobid=] -- add media to a pool"), false}, + { NT_("add"), add_cmd, _("add [pool= storage= jobid=] -- add media to a pool"), false}, { NT_("autodisplay"), autodisplay_cmd, _("autodisplay [on|off] -- console messages"),false}, { NT_("automount"), automount_cmd, _("automount [on|off] -- after label"), false}, { NT_("cancel"), cancel_cmd, _("cancel [jobid= job= ujobid=] -- cancel a job"), false}, @@ -129,7 +129,7 @@ static struct cmdstruct commands[] = { /* C { NT_("memory"), memory_cmd, _("print current memory usage"), true}, { NT_("messages"), messagescmd, _("messages"), false}, { NT_("mount"), mount_cmd, _("mount storage= [ slot= ] [ drive= ] or mount [ jobid= | job= ]"), false}, - { NT_("prune"), prunecmd, _("files|jobs|volume client= volume= prune expired records from catalog"), true}, + { NT_("prune"), prunecmd, _("prune files|jobs|volume client= volume= prune expired records from catalog"), true}, { NT_("purge"), purgecmd, _("purge records from catalog"), true}, { NT_("python"), python_cmd, _("python control commands"), false}, { NT_("quit"), quit_cmd, _("quit"), false},