diff options
author | Werner Koch <[email protected]> | 2002-02-07 18:43:22 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-02-07 18:43:22 +0000 |
commit | 2a28f5d0aece3300dea950b6f9bed9dbc1f01fa7 (patch) | |
tree | 5ca0c73c6b9289476447ed726b0bd8b1ec6b355c /sm/gpgsm.c | |
parent | * decrypt.c (gpgsm_decrypt): Bail out after an decryption error. (diff) | |
download | gnupg-2a28f5d0aece3300dea950b6f9bed9dbc1f01fa7.tar.gz gnupg-2a28f5d0aece3300dea950b6f9bed9dbc1f01fa7.zip |
* certlist.c (gpgsm_add_to_certlist): Check that the specified
name identifies a certificate unambiguously.
(gpgsm_find_cert): Ditto.
* server.c (cmd_listkeys): Check that the data stream is available.
(cmd_listsecretkeys): Ditto.
(has_option): New.
(cmd_sign): Fix ambiguousity in option recognition.
* gpgsm.c (main): Enable --logger-fd.
* encrypt.c (gpgsm_encrypt): Increased buffer size for better
performance.
* call-agent.c (gpgsm_agent_pksign): Check the S-Exp received from
the agent.
* keylist.c (list_cert_colon): Filter out control characters.
Diffstat (limited to '')
-rw-r--r-- | sm/gpgsm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sm/gpgsm.c b/sm/gpgsm.c index 22fed31bd..cc86f053c 100644 --- a/sm/gpgsm.c +++ b/sm/gpgsm.c @@ -573,7 +573,7 @@ main ( int argc, char **argv) struct server_control_s ctrl; CERTLIST recplist = NULL; - /* FIXME: trap_unaligned ();*/ + /* fixme: trap_unaligned ();*/ set_strusage (my_strusage); gcry_control (GCRYCTL_SUSPEND_SECMEM_WARN); /* Please note that we may running SUID(ROOT), so be very CAREFUL @@ -592,7 +592,7 @@ main ( int argc, char **argv) may_coredump = disable_core_dumps (); - /* FIXME: init_signals();*/ + /* Fixme: init_signals();*/ create_dotlock (NULL); /* register locking cleanup */ i18n_init(); @@ -791,7 +791,7 @@ main ( int argc, char **argv) case oDebugWait: debug_wait = pargs.r.ret_int; break; case oStatusFD: ctrl.status_fd = pargs.r.ret_int; break; - case oLoggerFD: /* fixme: log_set_logfile (NULL, pargs.r.ret_int );*/ break; + case oLoggerFD: log_set_fd (pargs.r.ret_int ); break; case oWithFingerprint: with_fpr=1; /*fall thru*/ case oFingerprint: |