mirror of
git://git.gnupg.org/gnupg.git
synced 2025-03-23 21:59:57 +01:00
scd: Fix status info encoding.
* scd/command.c (send_status_info): Do percent plus encoding correctly. -- Reported-by: David Härdeman <david@hardeman.nu> Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
parent
6bf6981972
commit
4ee4d0b021
@ -2137,7 +2137,8 @@ send_status_info (ctrl_t ctrl, const char *keyword, ...)
|
||||
}
|
||||
for ( ; valuelen && n < DIM (buf)-2; n++, valuelen--, value++)
|
||||
{
|
||||
if (*value < ' ' || *value == '+')
|
||||
if (*value == '+' || *value == '\"' || *value == '%'
|
||||
|| *value < ' ')
|
||||
{
|
||||
sprintf (p, "%%%02X", *value);
|
||||
p += 3;
|
||||
|
Loading…
x
Reference in New Issue
Block a user