diff options
author | Werner Koch <[email protected]> | 2006-11-14 10:23:21 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-11-14 10:23:21 +0000 |
commit | 650293c4f6fa9d1b1d6b56956b848e9880ac8c38 (patch) | |
tree | 5b134cad1a33a3bdf44c4e2c1c70510ff8f4d0a6 /agent/command.c | |
parent | Post release update (diff) | |
download | gnupg-650293c4f6fa9d1b1d6b56956b848e9880ac8c38.tar.gz gnupg-650293c4f6fa9d1b1d6b56956b848e9880ac8c38.zip |
sm/
* server.c (skip_options): Skip leading spaces.
(has_option): Honor "--".
(cmd_export): Add option --data to do an inline export. Skip all
options.
* certdump.c (gpgsm_fpr_and_name_for_status): New.
* verify.c (gpgsm_verify): Use it to print correct status messages.
doc/
* gpgsm.texi (GPGSM EXPORT): Document changes.
Diffstat (limited to '')
-rw-r--r-- | agent/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/command.c b/agent/command.c index cebbf9a2f..d91b690df 100644 --- a/agent/command.c +++ b/agent/command.c @@ -153,7 +153,7 @@ has_option_name (const char *line, const char *name) /* Skip over options. It is assumed that leading spaces have been removed (this is the case for lines passed to a handler from - assuan). Bkanls after the options are also removed. */ + assuan). Blanks after the options are also removed. */ static char * skip_options (char *line) { |