2003-01-19 Miguel Coca <mcoca@gnu.org>
authorMarcus Brinkmann <mb@g10code.com>
Sun, 19 Jan 2003 22:05:40 +0000 (22:05 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Sun, 19 Jan 2003 22:05:40 +0000 (22:05 +0000)
* w32-io.c (_gpgme_io_select): Add missing argument in calls to
DEBUG_BEGIN.
* w32-util.c: Include "sema.h".
(find_program_in_registry): Change DEBUG1 to DEBUG2, fixes compilation
error.

gpgme/ChangeLog
gpgme/w32-io.c
gpgme/w32-util.c

index 1aec903b4bc1ecd0431544dd9bbf835e1830895a..e0e841e4883eb76321b5f1bc657fb0b3cf0edf4c 100644 (file)
@@ -1,3 +1,11 @@
+2003-01-19  Miguel Coca  <mcoca@gnu.org>
+
+       * w32-io.c (_gpgme_io_select): Add missing argument in calls to
+       DEBUG_BEGIN.
+       * w32-util.c: Include "sema.h".
+       (find_program_in_registry): Change DEBUG1 to DEBUG2, fixes compilation
+       error.
+
 2003-01-19  Marcus Brinkmann  <marcus@g10code.de>
 
        * rungpg.c (_gpgme_engine_ops_gpg): Remove gpg_start.
index 91dfe87b741cbf5c40d9ac656194fb03ac18b081..9170e36763184282194b0b44aa6b79d66b19ece7 100644 (file)
@@ -992,7 +992,7 @@ _gpgme_io_select ( struct io_select_fd_s *fds, size_t nfds, int nonblock )
     void *dbg_help;
 
  restart:
-    DEBUG_BEGIN (dbg_help, "select on [ ");
+    DEBUG_BEGIN (dbg_help, 3, "select on [ ");
     any = 0;
     nwait = 0;
     count = 0;
@@ -1103,7 +1103,7 @@ _gpgme_io_select ( struct io_select_fd_s *fds, size_t nfds, int nonblock )
     }
 
     if ( count ) {
-        DEBUG_BEGIN (dbg_help, " signaled [ ");
+        DEBUG_BEGIN (dbg_help, 3, " signaled [ ");
         for ( i=0; i < nfds; i++ ) {
             if ( fds[i].fd == -1 ) 
                 continue;
index bdd5eaf194119d0635e0edf8aa1f49cea570166d..674fb7ddfa71e38c6df286bf8bb2319fb62721df 100644 (file)
@@ -36,6 +36,7 @@
 #include <io.h>
 
 #include "util.h"
+#include "sema.h"
 
 DEFINE_STATIC_LOCK (get_path_lock);
 
@@ -100,7 +101,7 @@ find_program_in_registry (const char *name)
     {
       int i;
 
-      DEBUG1 ("found %s in registry: `%s'", name, program);
+      DEBUG2 ("found %s in registry: `%s'", name, program);
       for (i = 0; program[i]; i++)
        {
          if (program[i] == '/')