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
349 B

  1. --- a/common/userpref.c
  2. +++ b/common/userpref.c
  3. @@ -159,7 +159,7 @@ const char *userpref_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, USERPREF_CONFIG_DIR, NULL);