Fix missing strncmp return value comparison
[lttng-tools.git] / src / bin / lttng / commands / destroy.c
index b0262ea2f0bbf5e1a3ec7e36925f3b3c9e1fccdd..e1833c89ccd8183609f0b18065764691ac6117ae 100644 (file)
@@ -52,7 +52,7 @@ static void usage(FILE *ofp)
        fprintf(ofp, "get it from the configuration directory (.lttng).\n");
        fprintf(ofp, "\n");
        fprintf(ofp, "  -h, --help           Show this help\n");
-       fprintf(ofp, "      --list-options       Simple listing of options\n");
+       fprintf(ofp, "      --list-options   Simple listing of options\n");
        fprintf(ofp, "\n");
 }
 
@@ -77,6 +77,7 @@ static int destroy_session()
 
        ret = lttng_destroy_session(session_name);
        if (ret < 0) {
+               /* Don't set ret so lttng can interpret the sessiond error. */
                goto free_name;
        }
 
This page took 0.022764 seconds and 4 git commands to generate.