diff options
Diffstat (limited to 'src/assuan-handler.c')
-rw-r--r-- | src/assuan-handler.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/assuan-handler.c b/src/assuan-handler.c index f77d59b..eacbeb3 100644 --- a/src/assuan-handler.c +++ b/src/assuan-handler.c @@ -811,7 +811,9 @@ assuan_get_active_fds (assuan_context_t ctx, int what, if (ctx->outbound.fd != ASSUAN_INVALID_FD) fdarray[n++] = ctx->outbound.fd; if (ctx->outbound.data.fp) -#ifdef HAVE_W32_SYSTEM +#if defined(HAVE_W32CE_SYSTEM) + fdarray[n++] = (void*)fileno (ctx->outbound.data.fp); +#elif defined(HAVE_W32_SYSTEM) fdarray[n++] = (void*)_get_osfhandle (fileno (ctx->outbound.data.fp)); #else fdarray[n++] = fileno (ctx->outbound.data.fp); |