summaryrefslogtreecommitdiff
path: root/libsoup/soup-auth-digest.c
diff options
context:
space:
mode:
authorKalev Lember <kalevlember@gmail.com>2012-09-02 13:03:12 +0200
committerDan Winship <danw@gnome.org>2012-09-03 08:32:19 -0400
commit9b9ed982a529fc68447a2640a92d73da35fa508c (patch)
treeb6d864ed7b062937a18e5931f3d481153df6237a /libsoup/soup-auth-digest.c
parentebb117daed1be6c400e08927da8806d3b5b38d60 (diff)
downloadlibsoup-9b9ed982a529fc68447a2640a92d73da35fa508c.tar.gz
Fix the win32 build
Make sure glib.h is included before using G_OS_WIN32 ifdef. https://bugzilla.gnome.org/show_bug.cgi?id=683200
Diffstat (limited to 'libsoup/soup-auth-digest.c')
-rw-r--r--libsoup/soup-auth-digest.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libsoup/soup-auth-digest.c b/libsoup/soup-auth-digest.c
index ccdbb2e5..97ef5616 100644
--- a/libsoup/soup-auth-digest.c
+++ b/libsoup/soup-auth-digest.c
@@ -10,14 +10,15 @@
#endif
#include <string.h>
-#ifdef G_OS_WIN32
-#include <process.h>
-#endif
#include "soup-auth-digest.h"
#include "soup.h"
#include "soup-message-private.h"
+#ifdef G_OS_WIN32
+#include <process.h>
+#endif
+
typedef struct {
char *user;
char hex_urp[33];