diff options
author | Werner Koch <[email protected]> | 2022-06-02 14:10:37 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2022-06-03 08:08:21 +0000 |
commit | d2d7a2b128e981740ee3a3c6e2859bec0202cb86 (patch) | |
tree | e4e8e62681ca9ae4cb678c0a9ac85d2b25ebd7a9 /agent/call-daemon.c | |
parent | tools: Minor fix to gpg-connect-agent options. (diff) | |
download | gnupg-d2d7a2b128e981740ee3a3c6e2859bec0202cb86.tar.gz gnupg-d2d7a2b128e981740ee3a3c6e2859bec0202cb86.zip |
Remove remaining support for WindowsCE
--
Diffstat (limited to 'agent/call-daemon.c')
-rw-r--r-- | agent/call-daemon.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/agent/call-daemon.c b/agent/call-daemon.c index 26c25fcd9..f907f40eb 100644 --- a/agent/call-daemon.c +++ b/agent/call-daemon.c @@ -469,9 +469,7 @@ daemon_start (enum daemon_type type, ctrl_t ctrl) xfree (databuf); } - /* Tell the daemon we want him to send us an event signal. We - don't support this for W32CE. */ -#ifndef HAVE_W32CE_SYSTEM + /* Tell the daemon we want him to send us an event signal. */ if (opt.sigusr2_enabled) { char buf[100]; @@ -484,7 +482,6 @@ daemon_start (enum daemon_type type, ctrl_t ctrl) #endif assuan_transact (ctx, buf, NULL, NULL, NULL, NULL, NULL, NULL); } -#endif /*HAVE_W32CE_SYSTEM*/ g->primary_ctx = ctx; g->primary_ctx_reusable = 0; |