Error early on invalid tracker type for UST domain
[lttng-tools.git] / src / bin / lttng / commands / version.c
index ae43eaf2e74b715deb35aa2801dda78202bdc2d4..37ab106263496685f4e71a368a600af19a34b2b7 100644 (file)
@@ -27,6 +27,7 @@
 #include <common/mi-lttng.h>
 
 #include "../command.h"
+#include "version.h"
 
 #ifdef LTTNG_EMBED_HELP
 static const char help_msg[] =
@@ -158,8 +159,17 @@ int cmd_version(int argc, const char **argv)
                MSG("lttng version " VERSION " - " VERSION_NAME "%s",
                        GIT_VERSION[0] == '\0' ? "" : " - " GIT_VERSION);
                MSG("\n" VERSION_DESCRIPTION "\n");
-               MSG("Web site: http://lttng.org");
+               MSG("Web site: https://lttng.org");
                MSG("\n%s", lttng_license);
+               if (EXTRA_VERSION_NAME[0] != '\0') {
+                       MSG("\nExtra version name: " EXTRA_VERSION_NAME);
+               }
+               if (EXTRA_VERSION_DESCRIPTION[0] != '\0') {
+                       MSG("\nExtra version description:\n\t" EXTRA_VERSION_DESCRIPTION);
+               }
+               if (EXTRA_VERSION_PATCHES[0] != '\0') {
+                       MSG("\nExtra version patches:\n\t" EXTRA_VERSION_PATCHES);
+               }
        }
 
 end:
This page took 0.027945 seconds and 4 git commands to generate.