aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-27 23:01:27 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-04-27 23:01:27 +0200
commit89e242634be901f0f0ff17d535483da0d4a0cc67 (patch)
tree3d03eb7924c28ca0f090f4fd16c0a256e89b63b9
parentccf8eef13d8af4e72ccfdea69934184124cf282f (diff)
parent5d4ce25afe538dad351d2b0fa37bc5f4c15967bd (diff)
Merge branch 'bar/experimental' into experimental
-rw-r--r--uzbl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uzbl.c b/uzbl.c
index 3528bf4..895d880 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -457,7 +457,7 @@ settings_init () {
printf("XDG_CONFIG_HOME: %s\n", XDG_CONFIG_HOME);
strcpy (conf, XDG_CONFIG_HOME);
- strcat (conf, "/uzbl");
+ strcat (conf, "/uzbl/config");
if (file_exists (conf)) {
printf ("Config file %s found.\n", conf);
config_file = &conf[0];
@@ -473,7 +473,7 @@ settings_init () {
char *dir = (char *)strtok (dirs, ":");
while (dir && ! file_exists (conf)) {
strcpy (conf, dir);
- strcat (conf, "/uzbl");
+ strcat (conf, "/uzbl/config");
if (file_exists (conf)) {
printf ("Config file %s found.\n", conf);
config_file = &conf[0];