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.
This commit is contained in:
parent
b083ea8da3
commit
c44f5e0a3c
@ -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>
|
2003-01-19 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
* rungpg.c (_gpgme_engine_ops_gpg): Remove gpg_start.
|
* rungpg.c (_gpgme_engine_ops_gpg): Remove gpg_start.
|
||||||
|
@ -992,7 +992,7 @@ _gpgme_io_select ( struct io_select_fd_s *fds, size_t nfds, int nonblock )
|
|||||||
void *dbg_help;
|
void *dbg_help;
|
||||||
|
|
||||||
restart:
|
restart:
|
||||||
DEBUG_BEGIN (dbg_help, "select on [ ");
|
DEBUG_BEGIN (dbg_help, 3, "select on [ ");
|
||||||
any = 0;
|
any = 0;
|
||||||
nwait = 0;
|
nwait = 0;
|
||||||
count = 0;
|
count = 0;
|
||||||
@ -1103,7 +1103,7 @@ _gpgme_io_select ( struct io_select_fd_s *fds, size_t nfds, int nonblock )
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ( count ) {
|
if ( count ) {
|
||||||
DEBUG_BEGIN (dbg_help, " signaled [ ");
|
DEBUG_BEGIN (dbg_help, 3, " signaled [ ");
|
||||||
for ( i=0; i < nfds; i++ ) {
|
for ( i=0; i < nfds; i++ ) {
|
||||||
if ( fds[i].fd == -1 )
|
if ( fds[i].fd == -1 )
|
||||||
continue;
|
continue;
|
||||||
|
@ -36,6 +36,7 @@
|
|||||||
#include <io.h>
|
#include <io.h>
|
||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
#include "sema.h"
|
||||||
|
|
||||||
DEFINE_STATIC_LOCK (get_path_lock);
|
DEFINE_STATIC_LOCK (get_path_lock);
|
||||||
|
|
||||||
@ -100,7 +101,7 @@ find_program_in_registry (const char *name)
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
DEBUG1 ("found %s in registry: `%s'", name, program);
|
DEBUG2 ("found %s in registry: `%s'", name, program);
|
||||||
for (i = 0; program[i]; i++)
|
for (i = 0; program[i]; i++)
|
||||||
{
|
{
|
||||||
if (program[i] == '/')
|
if (program[i] == '/')
|
||||||
|
Loading…
Reference in New Issue
Block a user