Mercurial > audlegacy-plugins
changeset 949:d3b9627861de trunk
[svn] - revert r2028.
author | nenolod |
---|---|
date | Thu, 12 Apr 2007 15:03:53 -0700 |
parents | 8dd7c03376bb |
children | 668110a6a412 |
files | ChangeLog src/curl/curl.c |
diffstat | 2 files changed, 10 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Thu Apr 12 14:55:59 2007 -0700 +++ b/ChangeLog Thu Apr 12 15:03:53 2007 -0700 @@ -1,3 +1,11 @@ +2007-04-12 21:55:59 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [2030] + - add DEBUG_CURL to enable curl internal debugging messages + + trunk/src/curl/curl.c | 4 ++++ + 1 file changed, 4 insertions(+) + + 2007-04-12 21:04:26 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [2028] - only create a new thread if handle->cancel is 0.
--- a/src/curl/curl.c Thu Apr 12 14:55:59 2007 -0700 +++ b/src/curl/curl.c Thu Apr 12 15:03:53 2007 -0700 @@ -41,7 +41,7 @@ #define DEBUG_ICY_WRAP 0 #define DEBUG_ICY_VERBOSE 0 #define DEBUG_METADATA_REPORT 0 -#define DEBUG_CURL 0 +#define DEBUG_CURL 1 typedef struct _CurlHandle CurlHandle; @@ -512,7 +512,7 @@ handle->cancel = 1; return; } - if (!handle->thread && !handle->cancel) + if (!handle->thread) { handle->cancel = 0; handle->wr_index = 0;