From: Manish Katiyar Date: Wed, 1 Oct 2008 23:55:10 +0000 (-0400) Subject: debugfs: Make the usage messsage of logdump consistent with man page X-Git-Tag: v1.41.2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c59776306c7e6e7aca2d1442a0cf1bc08c647944;p=thirdparty%2Fe2fsprogs.git debugfs: Make the usage messsage of logdump consistent with man page Signed-off-by: Manish Katiyar Signed-off-by: "Theodore Ts'o" --- diff --git a/debugfs/logdump.c b/debugfs/logdump.c index fed983805..73680debf 100644 --- a/debugfs/logdump.c +++ b/debugfs/logdump.c @@ -88,7 +88,7 @@ void do_logdump(int argc, char **argv) struct journal_source journal_source; struct ext2_super_block *es = NULL; - journal_source.where = 0; + journal_source.where = JOURNAL_IS_INTERNAL; journal_source.fd = 0; journal_source.file = 0; dump_all = 0; @@ -264,7 +264,7 @@ errout: return; print_usage: - fprintf(stderr, "%s: Usage: logdump [-ac] [-b] [-i]\n\t" + fprintf(stderr, "%s: Usage: logdump [-acs] [-b] [-i]\n\t" "[-f] [output_file]\n", argv[0]); }