mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-09 12:54:23 +01:00
* miscutil.c (make_printable_string): Fix bug where some control
characters lose part of their ASCII representation.
This commit is contained in:
parent
b2f4b15b7c
commit
45c1414a2f
@ -1,3 +1,8 @@
|
||||
2006-04-17 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* miscutil.c (make_printable_string): Fix bug where some control
|
||||
characters lose part of their ASCII representation.
|
||||
|
||||
2006-04-11 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* memory.c (realloc): Revert m_guard fix and stick an #error in
|
||||
|
@ -313,7 +313,7 @@ make_printable_string( const byte *p, size_t n, int delim )
|
||||
*d++ = '0';
|
||||
else {
|
||||
sprintf(d, "x%02x", *p );
|
||||
d += 2;
|
||||
d += 3;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user