[svn] w32pth - r46 - trunk

svn author marcus cvs at cvs.gnupg.org
Wed Dec 1 15:32:20 CET 2010


Author: marcus
Date: 2010-12-01 15:32:20 +0100 (Wed, 01 Dec 2010)
New Revision: 46

Modified:
   trunk/ChangeLog
   trunk/w32-pth.c
Log:
2010-12-01  Marcus Brinkmann  <marcus at g10code.com>

	* w32-pth.c (w32ce_timer_thread): Use earliest timer, not latest.



Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2010-11-26 21:38:00 UTC (rev 45)
+++ trunk/ChangeLog	2010-12-01 14:32:20 UTC (rev 46)
@@ -1,3 +1,7 @@
+2010-12-01  Marcus Brinkmann  <marcus at g10code.com>
+
+	* w32-pth.c (w32ce_timer_thread): Use earliest timer, not latest.
+
 2010-11-26  Werner Koch  <wk at g10code.com>
 
 	* w32-pth.c: Repalce all fprintf to DBGFP my _pth-debug calls.

Modified: trunk/w32-pth.c
===================================================================
--- trunk/w32-pth.c	2010-11-26 21:38:00 UTC (rev 45)
+++ trunk/w32-pth.c	2010-12-01 14:32:20 UTC (rev 46)
@@ -527,7 +527,7 @@
           if (w32ce_timer[idx].event && w32ce_timer[idx].active)
             {
               any = 1;
-              if (w32ce_timer[idx].remaining > timeout)
+              if (w32ce_timer[idx].remaining < timeout)
                 timeout = w32ce_timer[idx].remaining;
             }
         }





More information about the Gnupg-commits mailing list