From 77eb9e0a46e70a80964608514fbeefe9e4102fc1 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Sun, 8 Feb 2004 14:28:23 +0000 Subject: Remove trailing / in invocation of mkdir, since it's unneeded and not 2004-02-08 Christian Persch * 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. --- ChangeLog | 7 +++++++ embed/ephy-favicon-cache.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0648cc784..d414dd9a0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-02-08 Christian Persch + + * 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 * 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) -- cgit v1.2.3