]> Pileus Git - grits/commitdiff
Move cache name building to separate function
authorAndy Spencer <andy753421@gmail.com>
Mon, 19 Apr 2010 06:24:23 +0000 (06:24 +0000)
committerAndy Spencer <andy753421@gmail.com>
Mon, 19 Apr 2010 06:24:23 +0000 (06:24 +0000)
src/data/gis-http.c

index 144168d3e9e3d556f8a48a231c4ee2aaad979509..739792a57a33669f180257aaf6cab4d511b412a2 100644 (file)
 
 #include "gis-http.h"
 
+gchar *_get_cache_path(GisHttp *http, const gchar *local)
+{
+       return g_build_filename(g_get_user_cache_dir(), PACKAGE,
+                       http->prefix, local, NULL);
+}
+
 /**
  * gis_http_new:
  * @prefix: The prefix in the cache to store the downloaded files.
@@ -120,8 +126,7 @@ gchar *gis_http_fetch(GisHttp *http, const gchar *uri, const char *local,
        g_debug("GisHttp: fetch - %s... >> %s/%s  mode=%d",
                        uri, http->prefix, local, mode);
 
-       gchar *path = g_build_filename(g_get_user_cache_dir(), PACKAGE,
-                       http->prefix, local, NULL);
+       gchar *path = _get_cache_path(http, local);
 
        /* Unlink the file if we're refreshing it */
        if (mode == GIS_REFRESH)