From 725f734bae7d94031d5a0d28e258aa1104bc3e20 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Fri, 7 Jul 2006 07:49:16 +0000 Subject: Correct the trace for WinCE. --- lib/hostthre.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/hostthre.c') diff --git a/lib/hostthre.c b/lib/hostthre.c index a21105695..f55abb690 100644 --- a/lib/hostthre.c +++ b/lib/hostthre.c @@ -542,10 +542,12 @@ static bool init_resolve_thread (struct connectdata *conn, #endif if (!td->thread_hnd) { -#ifndef _WIN32_WCE +#ifdef _WIN32_WCE + TRACE(("CreateThread() failed; %s\n", Curl_strerror(conn,GetLastError()))); +#else SetLastError(errno); -#endif TRACE(("_beginthreadex() failed; %s\n", Curl_strerror(conn,errno))); +#endif Curl_destroy_thread_data(&conn->async); return FALSE; } -- cgit v1.2.1