From e4226cdc465732a4b943844ec5e089a74fbf4384 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Thu, 7 Aug 2008 14:44:59 +0000 Subject: [PATCH] Fix the mime sniffing test svn path=/trunk/; revision=21038 --- ChangeLog | 5 +++++ configure.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e36f5a9248..e0c48e3559 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-08-07 Matthias Clasen + + * configure.in: Its g_content_type_from_mime_type, not + g_content_type_for_mime_type. Noticed by Roger Brown + 2008-08-07 16:19:16 Tim Janik * gdk/gdkrgb.c (gdk_rgb_select_conv): use g_error() instead of a diff --git a/configure.in b/configure.in index f4d5c507c2..8ad226c984 100644 --- a/configure.in +++ b/configure.in @@ -1052,7 +1052,7 @@ if test x$gio_can_sniff = x; then char *content_type; char *image_png; content_type = g_content_type_guess (NULL, data, data_size, NULL); - image_png = g_content_type_for_mime_type ("image/png"); + image_png = g_content_type_from_mime_type ("image/png"); return !!strcmp (content_type, image_png); }]])], [gio_can_sniff=yes