aboutsummaryrefslogtreecommitdiffstats
path: root/scd/scdaemon.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2004-04-21 14:44:09 +0000
committerWerner Koch <[email protected]>2004-04-21 14:44:09 +0000
commit4624e9dfb3fd8260273706d43c6137f860abb89c (patch)
treedb43b41f15aea075e5d6fac80aaf3d69309449f9 /scd/scdaemon.c
parent* call-scd.c (start_scd): Send event-signal option. Always check (diff)
downloadgnupg-4624e9dfb3fd8260273706d43c6137f860abb89c.tar.gz
gnupg-4624e9dfb3fd8260273706d43c6137f860abb89c.zip
* command.c (scd_update_reader_status_file): Send a signal back to
the client. (option_handler): Parse the new event-signal option. * scdaemon.c (handle_signal): Do not use SIGUSR{1,2} anymore for changing the verbosity.
Diffstat (limited to 'scd/scdaemon.c')
-rw-r--r--scd/scdaemon.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/scd/scdaemon.c b/scd/scdaemon.c
index aabd38861..5066a373b 100644
--- a/scd/scdaemon.c
+++ b/scd/scdaemon.c
@@ -839,15 +839,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 - no action defined\n");
break;
case SIGTERM: