mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
See ChangeLog: Mon May 17 21:54:43 CEST 1999 Werner Koch
This commit is contained in:
parent
a1dcec76c1
commit
3983f30bd2
24 changed files with 378 additions and 182 deletions
|
@ -210,13 +210,13 @@ g10_log_debug_f( const char *fname, const char *fmt, ... )
|
|||
|
||||
|
||||
void
|
||||
g10_log_hexdump( const char *text, char *buf, size_t len )
|
||||
g10_log_hexdump( const char *text, const char *buf, size_t len )
|
||||
{
|
||||
int i;
|
||||
|
||||
print_prefix(text);
|
||||
for(i=0; i < len; i++ )
|
||||
fprintf(stderr, " %02X", ((byte*)buf)[i] );
|
||||
fprintf(stderr, " %02X", ((const byte*)buf)[i] );
|
||||
fputc('\n', stderr);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue