X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Fstatus.c;h=cb7d0329b43faba3b14ef3a5ac1fee8869c6a50e;hp=693527535418cb647a6b8400ccc247d6cd4e39f1;hb=4fc83d948cea6b10484e65f004a6c167e71ac440;hpb=4ba92f185fb1d0b112cbc804a261939f5f81dc34 diff --git a/src/bin/lttng/commands/status.c b/src/bin/lttng/commands/status.c index 693527535..cb7d0329b 100644 --- a/src/bin/lttng/commands/status.c +++ b/src/bin/lttng/commands/status.c @@ -28,6 +28,12 @@ #include "../utils.h" #include +#ifdef LTTNG_EMBED_HELP +static const char help_msg[] = +#include +; +#endif + enum { OPT_HELP = 1, OPT_LIST_OPTIONS, @@ -40,15 +46,6 @@ static struct poptOption long_options[] = { {0, 0, 0, 0, 0, 0, 0} }; -static void usage(FILE *ofp) -{ - fprintf(ofp, "Usage: lttng status [options]\n"); - fprintf(ofp, "\n"); - fprintf(ofp, "Options:\n"); - fprintf(ofp, " -h, --help Show this help\n"); - fprintf(ofp, " --list-options List options\n"); -} - static int status(void) { const char *argv[2]; @@ -89,7 +86,6 @@ int cmd_status(int argc, const char **argv) list_cmd_options(stdout, long_options); goto end; default: - usage(stderr); ret = CMD_UNDEFINED; goto end; } @@ -97,7 +93,6 @@ int cmd_status(int argc, const char **argv) if (poptPeekArg(pc) != NULL) { ERR("This command does not accept positional arguments.\n"); - usage(stderr); ret = CMD_UNDEFINED; goto end; }