summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel@osg.samsung.com>2018-02-24 21:07:13 +0100
committerMarcel Hollerbach <marcel@osg.samsung.com>2018-02-24 21:07:13 +0100
commit85ebb13abcbc0ce26f7beb8e01e76abde82cb6a2 (patch)
tree1088c320f02ca1b2a216bb7f5306d03e5f2db9a2
parentaf928a84e7ab71809533c1cdebbece7b1313e38e (diff)
downloadefl-85ebb13abcbc0ce26f7beb8e01e76abde82cb6a2.tar.gz
elm_config: fixup copy paste error
when i did the vpath transition i made a copy and paste error, that might made a few people miss theire config and appear weird directories ~/elementary.elementary/ in theire homedirectory, sorry for that!
-rw-r--r--src/lib/elementary/elm_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_config.c b/src/lib/elementary/elm_config.c
index 568dfd2c6a..97afd11295 100644
--- a/src/lib/elementary/elm_config.c
+++ b/src/lib/elementary/elm_config.c
@@ -626,7 +626,7 @@ _elm_config_user_dir_snprintf(char *dst,
if (use_xdg_config)
tmp = eina_vpath_resolve("(:usr.config:)/elementary");
else
- tmp = eina_vpath_resolve("(:home:)/elementary" ELEMENTARY_BASE_DIR);
+ tmp = eina_vpath_resolve("(:home:)/" ELEMENTARY_BASE_DIR);
eina_strlcpy(dst, tmp, size);
free(tmp);