diff options
author | NIIBE Yutaka <[email protected]> | 2019-05-15 08:12:23 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2019-05-15 08:12:23 +0000 |
commit | 01730529f20882cd98882a61408e9bee960c86f1 (patch) | |
tree | d8e5c5437f662b8fb455aa13e886f30015edadc2 | |
parent | doc: Do not mention gpg's deprecated --keyserver option. (diff) | |
download | gnupg-01730529f20882cd98882a61408e9bee960c86f1.tar.gz gnupg-01730529f20882cd98882a61408e9bee960c86f1.zip |
scd: Don't put newline at the end of status.
* scd/command.c (send_keyinfo): Remove newline.
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | scd/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scd/command.c b/scd/command.c index 6b80341e4..9173a6843 100644 --- a/scd/command.c +++ b/scd/command.c @@ -1881,7 +1881,7 @@ send_keyinfo (ctrl_t ctrl, int data, const char *keygrip_str, char *string; assuan_context_t ctx = ctrl->server_local->assuan_ctx; - string = xtryasprintf ("%s T %s %s\n", keygrip_str, + string = xtryasprintf ("%s T %s %s", keygrip_str, serialno? serialno : "-", idstr? idstr : "-"); if (!string) |