Remove default defines from lttng.h
[lttng-tools.git] / src / bin / lttng / commands / create.c
index a791fbd4df43710c0ae024ee09a4a477d6de5eae..34754c7ca139f40077b6ea6e4cb6d81852257e88 100644 (file)
@@ -101,10 +101,10 @@ static int create_session()
                }
 
                if (have_name) {
-                       ret = asprintf(&traces_path, "%s/" LTTNG_DEFAULT_TRACE_DIR_NAME
+                       ret = asprintf(&traces_path, "%s/" DEFAULT_TRACE_DIR_NAME
                                        "/%s-%s", alloc_path, session_name, datetime);
                } else {
-                       ret = asprintf(&traces_path, "%s/" LTTNG_DEFAULT_TRACE_DIR_NAME
+                       ret = asprintf(&traces_path, "%s/" DEFAULT_TRACE_DIR_NAME
                                        "/%s", alloc_path, session_name);
                }
 
@@ -147,9 +147,9 @@ error:
 }
 
 /*
- *  cmd_list
+ *  cmd_create
  *
- *  The 'list <options>' first level command
+ *  The 'create <options>' first level command
  */
 int cmd_create(int argc, const char **argv)
 {
This page took 0.023484 seconds and 4 git commands to generate.