diff options
author | Werner Koch <[email protected]> | 2006-11-23 10:35:31 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-11-23 10:35:31 +0000 |
commit | 80007b9411a419dfc1f9f90cdad64c3e10f3c01f (patch) | |
tree | 17b04b71d0135f98a7d67f146c1161f477ef117f | |
parent | Preparing 2.0.1rc1 (diff) | |
download | gnupg-80007b9411a419dfc1f9f90cdad64c3e10f3c01f.tar.gz gnupg-80007b9411a419dfc1f9f90cdad64c3e10f3c01f.zip |
Final fix for rc1gnupg-2.0.1rc1
-rw-r--r-- | scd/ChangeLog | 4 | ||||
-rw-r--r-- | scd/command.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/scd/ChangeLog b/scd/ChangeLog index 7cfcb76b0..3e65fc9eb 100644 --- a/scd/ChangeLog +++ b/scd/ChangeLog @@ -1,3 +1,7 @@ +2006-11-23 Werner Koch <[email protected]> + + * command.c (scd_command_handler): Fixed use of CTRL. + 2006-11-21 Werner Koch <[email protected]> * Makefile.am (libexec_PROGRAMS): Put pscs-wrapper into libexec. diff --git a/scd/command.c b/scd/command.c index 0dbd32df8..579145711 100644 --- a/scd/command.c +++ b/scd/command.c @@ -1639,7 +1639,7 @@ scd_command_handler (ctrl_t ctrl, int fd) gpg_strerror(rc)); scd_exit (2); } - assuan_set_pointer (ctx, &ctrl); + assuan_set_pointer (ctx, ctrl); /* Allocate and initialize the server object. Put it into the list of active sessions. */ |