about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-07-24 17:12:09 +0100
committerJames Booth <boothj5@gmail.com>2016-07-24 17:12:09 +0100
commit29452f8f1b8f7a61773905169b3883f1b494c786 (patch)
treeaf43bbb2007b9a69f03c38503d9e612156408839 /src/xmpp
parent6cc4abedc58f294ccb36632cb86464c247687288 (diff)
downloadprofani-tty-29452f8f1b8f7a61773905169b3883f1b494c786.tar.gz
Move xgd functions
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/capabilities.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/capabilities.c b/src/xmpp/capabilities.c
index bfc22120..b477b5f8 100644
--- a/src/xmpp/capabilities.c
+++ b/src/xmpp/capabilities.c
@@ -701,7 +701,7 @@ caps_destroy(Capabilities *caps)
 static gchar*
 _get_cache_file(void)
 {
-    gchar *xdg_data = xdg_get_data_home();
+    gchar *xdg_data = files_get_xdg_data_home();
     GString *cache_file = g_string_new(xdg_data);
     g_string_append(cache_file, "/profanity/capscache");
     gchar *result = strdup(cache_file->str);