diff options
author | Werner Koch <[email protected]> | 2009-02-25 10:58:56 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2009-02-25 10:58:56 +0000 |
commit | 618afc4231521cfcf74c667c9edf6fdc47b8ffe1 (patch) | |
tree | 3468662f7fe8946795ed4ded198b53f21f458b79 /agent/gpg-agent.c | |
parent | Better debug output. (diff) | |
download | gnupg-618afc4231521cfcf74c667c9edf6fdc47b8ffe1.tar.gz gnupg-618afc4231521cfcf74c667c9edf6fdc47b8ffe1.zip |
Fixed a nasty bug in scdaemon which led to a card reset if the card was
inserted during scdaemon startup and a connection was made before the
ticker had a chance to run. Add some stuff for better debugging.
Diffstat (limited to 'agent/gpg-agent.c')
-rw-r--r-- | agent/gpg-agent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c index d5045d263..90319d22f 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c @@ -2065,7 +2065,7 @@ check_own_socket (void) tattr = pth_attr_new(); pth_attr_set (tattr, PTH_ATTR_JOINABLE, 0); pth_attr_set (tattr, PTH_ATTR_STACK_SIZE, 256*1024); - pth_attr_set (tattr, PTH_ATTR_NAME, "check-owb-socket"); + pth_attr_set (tattr, PTH_ATTR_NAME, "check-own-socket"); if (!pth_spawn (tattr, check_own_socket_thread, sockname)) log_error ("error spawning check_own_socket_thread: %s\n", |