ports/devel/libsoup22/files/patch-src_libsoup_soup-message.c
Joe Marcus Clarke 0407087089 Fix a problem with soup causing Evolution to segfault when trying to get
RDF newsfeeds.  This is an attempt to solve both this crash as well as
get it building on 64-bot architectures.
2002-11-12 07:53:46 +00:00

22 lines
506 B
C

--- src/libsoup/soup-message.c.orig Wed Apr 10 12:33:17 2002
+++ src/libsoup/soup-message.c Tue Nov 12 02:52:40 2002
@@ -907,7 +907,7 @@
SoupHandlerKind kind;
union {
- guint errorcode;
+ unsigned long errorcode;
SoupErrorClass errorclass;
const gchar *header;
} data;
@@ -922,8 +922,9 @@
redirect_handler,
NULL,
RESPONSE_HEADER_HANDLER,
- { (guint) "Location" }
+ { (unsigned long) "Location" }
},
+
/*
* Handle authorization.
*/