diff src/mime.c @ 11780:8cb75ba77f9d

[gaim-migrate @ 14071] I've been time travelling, I bumped into Gtk 2.0 on my way. Gaim now works with Gtk 2.0 again. Next stop: gtk 1.2 ... erm. what? ... NO! PS. resiak: I won! committer: Tailor Script <tailor@pidgin.im>
author Stu Tomlinson <stu@nosnilmot.com>
date Mon, 24 Oct 2005 00:31:41 +0000
parents 57fccea36e36
children d4cd7d443795
line wrap: on
line diff
--- a/src/mime.c	Mon Oct 24 00:18:37 2005 +0000
+++ b/src/mime.c	Mon Oct 24 00:31:41 2005 +0000
@@ -431,7 +431,7 @@
 
   {
     const char *ct = fields_get(&doc->fields, "content-type");
-    if(ct && g_str_has_prefix(ct, "multipart")) {
+    if(ct && gaim_str_has_prefix(ct, "multipart")) {
       char *bd = strrchr(ct, '=');
       if(bd++) {
 	doc_parts_load(doc, bd, b, n);
@@ -457,7 +457,7 @@
 
   {
     const char *ct = fields_get(&doc->fields, "content-type");
-    if(ct && g_str_has_prefix(ct, "multipart")) {
+    if(ct && gaim_str_has_prefix(ct, "multipart")) {
       char *b = strrchr(ct, '=');
       if(b++) bd = b;
     }