You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
324 B

  1. --- a/src/conf.c
  2. +++ b/src/conf.c
  3. @@ -126,7 +126,7 @@ const char *config_get_config_dir()
  4. #ifdef __APPLE__
  5. base_config_dir = strdup("/var/db");
  6. #else
  7. - base_config_dir = strdup("/var/lib");
  8. + base_config_dir = strdup("/etc");
  9. #endif
  10. #endif
  11. __config_dir = string_concat(base_config_dir, DIR_SEP_S, CONFIG_DIR, NULL);