Improve trace output path and config path
[lttng-tools.git] / lttng / conf.c
index 9e3a626ba34d5112fa83d15e6ca24585a37b8dd9..1cf0907ad884bf204060e6bd6f8f7df79f7d0bb1 100644 (file)
@@ -148,19 +148,12 @@ error:
 /*
  *  config_get_default_path
  *
- *  Return the default path to config directory which is the current working
- *  directory. User must free() the returned allocated string.
+ *  Return the HOME directory path. The output is dup so the user MUST
+ *  free(3) the returned string.
  */
 char *config_get_default_path(void)
 {
-       char *alloc_path;
-
-       alloc_path = getcwd(NULL, 0);
-       if (alloc_path == NULL) {
-               perror("getcwd");
-       }
-
-       return alloc_path;
+       return strdup(getenv("HOME"));
 }
 
 /*
This page took 0.023013 seconds and 4 git commands to generate.