blob: b83d406260a690da469a0a9ada024d8d665c0011 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- 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.
*/
|