summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2004-01-12 14:55:22 +0000
committerDan Winship <danw@src.gnome.org>2004-01-12 14:55:22 +0000
commit88abf4b7b751f3d2579f8775ac20444bb224db19 (patch)
tree54da9ac6b73e83e1beb370cacde31e8f8005a6f6
parent0ca7a3af05f9b399c57e371b98e4321a87337080 (diff)
downloadlibsoup-88abf4b7b751f3d2579f8775ac20444bb224db19.tar.gz
Add a g_thread_init() so this works again.
* tests/simple-httpd.c (main): Add a g_thread_init() so this works again.
-rw-r--r--ChangeLog5
-rw-r--r--tests/simple-httpd.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index dcb8633d..74a246ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-12 Dan Winship <danw@ximian.com>
+
+ * tests/simple-httpd.c (main): Add a g_thread_init() so this works
+ again.
+
2004-01-10 Larry Ewing <lewing@ximian.com>
* libsoup-2.2.pc.in (Libs): use LIBGNUTLS_LIBS in the substitution
diff --git a/tests/simple-httpd.c b/tests/simple-httpd.c
index db2ad410..d50f38e7 100644
--- a/tests/simple-httpd.c
+++ b/tests/simple-httpd.c
@@ -128,6 +128,7 @@ main (int argc, char **argv)
const char *ssl_cert_file = NULL, *ssl_key_file = NULL;
g_type_init ();
+ g_thread_init (NULL);
signal (SIGINT, quit);
while ((opt = getopt (argc, argv, "p:k:c:s:")) != -1) {