mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-01 16:33:02 +01:00
* miscutil.c (print_string2): New variation on print_string that allows
two delimiters. (print_string): Call print_string2 to do work. * argparse.c (default_strusage): Update copyright date.
This commit is contained in:
parent
b45814907d
commit
31eada47b6
@ -1,3 +1,11 @@
|
|||||||
|
2004-01-13 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
|
* miscutil.c (print_string2): New variation on print_string that
|
||||||
|
allows two delimiters.
|
||||||
|
(print_string): Call print_string2 to do work.
|
||||||
|
|
||||||
|
* argparse.c (default_strusage): Update copyright date.
|
||||||
|
|
||||||
2003-12-24 David Shaw <dshaw@jabberwocky.com>
|
2003-12-24 David Shaw <dshaw@jabberwocky.com>
|
||||||
|
|
||||||
* iobuf.c (block_filter): Properly handle a partial body stream
|
* iobuf.c (block_filter): Properly handle a partial body stream
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/* [argparse.c wk 17.06.97] Argument Parser for option handling
|
/* [argparse.c wk 17.06.97] Argument Parser for option handling
|
||||||
* Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
|
* Copyright (C) 1998, 1999, 2000, 2001, 2003
|
||||||
|
* 2004 Free Software Foundation, Inc.
|
||||||
*
|
*
|
||||||
* This file is part of GnuPG.
|
* This file is part of GnuPG.
|
||||||
*
|
*
|
||||||
@ -910,7 +911,7 @@ default_strusage( int level )
|
|||||||
switch( level ) {
|
switch( level ) {
|
||||||
case 11: p = "foo"; break;
|
case 11: p = "foo"; break;
|
||||||
case 13: p = "0.0"; break;
|
case 13: p = "0.0"; break;
|
||||||
case 14: p = "Copyright (C) 2003 Free Software Foundation, Inc."; break;
|
case 14: p = "Copyright (C) 2004 Free Software Foundation, Inc."; break;
|
||||||
case 15: p =
|
case 15: p =
|
||||||
"This program comes with ABSOLUTELY NO WARRANTY.\n"
|
"This program comes with ABSOLUTELY NO WARRANTY.\n"
|
||||||
"This is free software, and you are welcome to redistribute it\n"
|
"This is free software, and you are welcome to redistribute it\n"
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/* miscutil.c - miscellaneous utilities
|
/* miscutil.c - miscellaneous utilities
|
||||||
* Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
|
* Copyright (C) 1998, 1999, 2000, 2001, 2003,
|
||||||
|
* 2004 Free Software Foundation, Inc.
|
||||||
*
|
*
|
||||||
* This file is part of GnuPG.
|
* This file is part of GnuPG.
|
||||||
*
|
*
|
||||||
@ -175,15 +176,18 @@ asctimestamp( u32 stamp )
|
|||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/****************
|
/****************
|
||||||
* Print a string to FP, but filter all control characters out.
|
* Print a string to FP, but filter all control characters out.
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
print_string( FILE *fp, const byte *p, size_t n, int delim )
|
print_string2( FILE *fp, const byte *p, size_t n, int delim, int delim2 )
|
||||||
{
|
{
|
||||||
for( ; n; n--, p++ )
|
for( ; n; n--, p++ )
|
||||||
if( *p < 0x20 || (*p >= 0x7f && *p < 0xa0) || *p == delim ||
|
if( *p < 0x20 || (*p >= 0x7f && *p < 0xa0)
|
||||||
(delim && *p=='\\')) {
|
|| *p == delim || *p == delim2
|
||||||
|
|| ((delim || delim2) && *p=='\\'))
|
||||||
|
{
|
||||||
putc('\\', fp);
|
putc('\\', fp);
|
||||||
if( *p == '\n' )
|
if( *p == '\n' )
|
||||||
putc('n', fp);
|
putc('n', fp);
|
||||||
@ -199,9 +203,15 @@ print_string( FILE *fp, const byte *p, size_t n, int delim )
|
|||||||
putc('0', fp);
|
putc('0', fp);
|
||||||
else
|
else
|
||||||
fprintf(fp, "x%02x", *p );
|
fprintf(fp, "x%02x", *p );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
putc(*p, fp);
|
putc(*p, fp);
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
print_string( FILE *fp, const byte *p, size_t n, int delim )
|
||||||
|
{
|
||||||
|
print_string2(fp,p,n,delim,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/****************
|
/****************
|
||||||
|
Loading…
x
Reference in New Issue
Block a user