Skip to content
Snippets Groups Projects
Commit a810af5e authored by Daniel Salzman's avatar Daniel Salzman
Browse files

kjournalprint: document semantic check parameter

parent d6065c23
No related branches found
No related tags found
1 merge request!1013kjournalprint: fix changeset history depth limitation
Pipeline #48589 passed
......@@ -53,6 +53,9 @@ Removes changes coloring.
Instead of reading jurnal, display the list of zones in the DB.
(\fIzone_name\fP not needed)
.TP
\fB\-c\fP, \fB\-\-check\fP
Enable additional journal semantic checks during printing.
.TP
\fB\-h\fP, \fB\-\-help\fP
Print the program help.
.TP
......
......@@ -30,6 +30,9 @@ Options
Instead of reading jurnal, display the list of zones in the DB.
(*zone_name* not needed)
**-c**, **--check**
Enable additional journal semantic checks during printing.
**-h**, **--help**
Print the program help.
......
......@@ -45,6 +45,7 @@ static void print_help(void)
" -n, --no-color Get output without terminal coloring.\n"
" -z, --zone-list Instead of reading jurnal, display the list\n"
" of zones in the DB (<zone_name> not needed).\n"
" -c, --check Additional journal semantic checks.\n"
" -d, --debug Debug mode output.\n"
" -h, --help Print the program help.\n"
" -V, --version Print the program version.\n",
......@@ -245,6 +246,7 @@ int main(int argc, char *argv[])
{ "limit", required_argument, NULL, 'l' },
{ "no-color", no_argument, NULL, 'n' },
{ "zone-list", no_argument, NULL, 'z' },
{ "check", no_argument, NULL, 'c' },
{ "debug", no_argument, NULL, 'd' },
{ "help", no_argument, NULL, 'h' },
{ "version", no_argument, NULL, 'V' },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment