From: Simon Marchi Date: Thu, 27 Jun 2019 00:04:49 +0000 (-0400) Subject: cli: add missing line in --plugin-path help X-Git-Tag: v2.0.0-rc1~631 X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=759dd452440716d363157e525a6fe695ea023325;p=babeltrace.git cli: add missing line in --plugin-path help When doing "babeltrace2 convert --help", a line is missing from the --plugin-path option help. This patch adds it, copied from the help of the other commands. Signed-off-by: Simon Marchi Change-Id: I823385cae29afa2bfa0650d4c5dd0142dd4f9cea Reviewed-on: https://review.lttng.org/c/babeltrace/+/1549 Tested-by: jenkins Reviewed-by: Philippe Proulx --- diff --git a/src/cli/babeltrace2-cfg-cli-args.c b/src/cli/babeltrace2-cfg-cli-args.c index c4cb1756..ce176287 100644 --- a/src/cli/babeltrace2-cfg-cli-args.c +++ b/src/cli/babeltrace2-cfg-cli-args.c @@ -2868,6 +2868,7 @@ void print_convert_usage(FILE *fp) fprintf(fp, " -P, --path=PATH Set the `path` string parameter of the\n"); fprintf(fp, " current component to PATH\n"); fprintf(fp, " --plugin-path=PATH[:PATH]... Add PATH to the list of paths from which\n"); + fprintf(fp, " dynamic plugins can be loaded\n"); fprintf(fp, " --retry-duration=DUR When babeltrace2(1) needs to retry to run\n"); fprintf(fp, " the graph later, retry in DUR µs\n"); fprintf(fp, " (default: 100000)\n");