summaryrefslogtreecommitdiffstats
path: root/src/plugins/abrt-action-kerneloops.c
diff options
context:
space:
mode:
authorDenys Vlasenko <dvlasenk@redhat.com>2011-03-26 04:57:45 +0100
committerDenys Vlasenko <dvlasenk@redhat.com>2011-03-26 04:57:45 +0100
commit508e1d6585a37483cc5166824840fd6be776869d (patch)
treef7517f1843ae50afec0a506495cded60761cffd3 /src/plugins/abrt-action-kerneloops.c
parenta5f311e2fa609215c8749f45a57557616ed0c298 (diff)
downloadabrt-508e1d6585a37483cc5166824840fd6be776869d.tar.gz
abrt-508e1d6585a37483cc5166824840fd6be776869d.tar.xz
abrt-508e1d6585a37483cc5166824840fd6be776869d.zip
abrt-action-trim-files: new tool for trimming old debuginfo and debug dumps
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/plugins/abrt-action-kerneloops.c')
-rw-r--r--src/plugins/abrt-action-kerneloops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/abrt-action-kerneloops.c b/src/plugins/abrt-action-kerneloops.c
index 72ec80e3..5d46d157 100644
--- a/src/plugins/abrt-action-kerneloops.c
+++ b/src/plugins/abrt-action-kerneloops.c
@@ -130,7 +130,7 @@ int main(int argc, char **argv)
/* Can't keep these strings/structs static: _() doesn't support that */
const char *program_usage_string = _(
- PROGNAME" [-v] -c CONFFILE -d DIR\n"
+ PROGNAME" [-v] [-c CONFFILE]... -d DIR\n"
"\n"
"Reports kernel oops to kerneloops.org (or similar) site"
);
@@ -143,7 +143,7 @@ int main(int argc, char **argv)
struct options program_options[] = {
OPT__VERBOSE(&g_verbose),
OPT_STRING('d', NULL, &dump_dir_name, "DIR" , _("Dump directory")),
- OPT_LIST( 'c', NULL, &conf_file , "FILE", _("Configuration file (may be given many times)")),
+ OPT_LIST( 'c', NULL, &conf_file , "FILE", _("Configuration file")),
OPT_END()
};
/*unsigned opts =*/ parse_opts(argc, argv, program_options, program_usage_string);