More win32 portability fixes. we now talk to tracker & peers; hash checks work, downloads seem to work. w00t

This commit is contained in:
Charles Kerr
2007-08-02 23:33:40 +00:00
parent 1af17214c9
commit ef2fc4fdcf
5 changed files with 25 additions and 15 deletions

View File

@@ -48,7 +48,7 @@
static tr_lock_t * messageLock = NULL;
static int messageLevel = 0;
static int messageQueuing = 0;
static int messageQueuing = FALSE;
static tr_msg_list_t * messageQueue = NULL;
static tr_msg_list_t ** messageQueueTail = &messageQueue;
@@ -160,6 +160,7 @@ void tr_msg( int level, char * msg, ... )
{
vfprintf( stderr, msg, args1 );
fputc( '\n', stderr );
fflush( stderr );
}
va_end( args1 );
}