diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | embed/ephy-favicon-cache.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,10 @@ +2004-02-08 Christian Persch <chpe@cvs.gnome.org> + + * embed/ephy-favicon-cache.c: (ephy_favicon_cache_init): + + Remove trailing / in invocation of mkdir, since it's unneeded and not + portable. Patch by Julio M. Merino Vidal, fixes bug 133738. + 2004-02-06 Christian Persch <chpe@cvs.gnome.org> * src/ephy-tab.c: (ephy_tab_dom_mouse_click_cb): diff --git a/embed/ephy-favicon-cache.c b/embed/ephy-favicon-cache.c index df2815855..222f67f5b 100644 --- a/embed/ephy-favicon-cache.c +++ b/embed/ephy-favicon-cache.c @@ -206,7 +206,7 @@ ephy_favicon_cache_init (EphyFaviconCache *cache) NULL); cache->priv->directory = g_build_filename (ephy_dot_dir (), - "favicon_cache/", + "favicon_cache", NULL); if (g_file_test (cache->priv->directory, G_FILE_TEST_IS_DIR) == FALSE) |