aboutsummaryrefslogtreecommitdiffstats
path: root/agent/gpg-agent.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2004-04-21 14:43:51 +0000
committerWerner Koch <[email protected]>2004-04-21 14:43:51 +0000
commit3d58329f67ba10a21ec0b2c9c8ede6e275a3607d (patch)
tree2401fc14354bf9351d13db5f451f59afd2debd3e /agent/gpg-agent.c
parent* command.c (scd_update_reader_status_file): Write status files. (diff)
downloadgnupg-3d58329f67ba10a21ec0b2c9c8ede6e275a3607d.tar.gz
gnupg-3d58329f67ba10a21ec0b2c9c8ede6e275a3607d.zip
* call-scd.c (start_scd): Send event-signal option. Always check
that the scdaemon is still running. * gpg-agent.c (handle_signal): Do not use SIGUSR{1,2} anymore for changing the verbosity.
Diffstat (limited to 'agent/gpg-agent.c')
-rw-r--r--agent/gpg-agent.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c
index 18a456f19..9b8678823 100644
--- a/agent/gpg-agent.c
+++ b/agent/gpg-agent.c
@@ -1059,15 +1059,11 @@ handle_signal (int signo)
break;
case SIGUSR1:
- if (opt.verbose < 5)
- opt.verbose++;
- log_info ("SIGUSR1 received - verbosity set to %d\n", opt.verbose);
+ log_info ("SIGUSR1 received - no action defined\n");
break;
-
+
case SIGUSR2:
- if (opt.verbose)
- opt.verbose--;
- log_info ("SIGUSR2 received - verbosity set to %d\n", opt.verbose );
+ log_info ("SIGUSR2 received - checking smartcard status\n");
break;
case SIGTERM: