From b46cc50c0935c57676449c71e6f4101128f27ce6 Mon Sep 17 00:00:00 2001 From: Xan Lopez Date: Wed, 12 Mar 2008 10:10:51 +0000 Subject: Use GChecksum to calculate the MD5 of favicons. svn path=/trunk/; revision=8099 --- embed/ephy-favicon-cache.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'embed') diff --git a/embed/ephy-favicon-cache.c b/embed/ephy-favicon-cache.c index 550c0937b..708423652 100644 --- a/embed/ephy-favicon-cache.c +++ b/embed/ephy-favicon-cache.c @@ -40,7 +40,6 @@ #include #include -#include #define EPHY_FAVICON_CACHE_XML_ROOT (const xmlChar *)"ephy_favicons_cache" #define EPHY_FAVICON_CACHE_XML_VERSION (const xmlChar *)"1.1" @@ -588,7 +587,7 @@ ephy_favicon_cache_get (EphyFaviconCache *cache, { char *filename; - filename = gnome_thumbnail_md5 (url); + filename = g_compute_checksum_for_string (G_CHECKSUM_MD5, url, -1); icon = ephy_node_new (cache->priv->db); ephy_node_set_property_string (icon, @@ -654,7 +653,7 @@ ephy_favicon_cache_get (EphyFaviconCache *cache, char *new_pix_file, *urlhash; GValue value = { 0, }; - urlhash = gnome_thumbnail_md5 (url); + urlhash = g_compute_checksum_for_string (G_CHECKSUM_MD5, url, -1); new_pix_file = g_build_filename (cache->priv->directory, urlhash, NULL); g_value_init (&value, G_TYPE_STRING); -- cgit v1.2.3