mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Implemented the chain model for X.509 validation.
This commit is contained in:
parent
ebd36b6344
commit
74d344a521
60 changed files with 16887 additions and 12516 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-08-09 Werner Koch <wk@g10code.com>
|
||||
|
||||
* argparse.c (show_help): Expand the @EMAIL@ macro in the package
|
||||
bug reporting address.
|
||||
|
||||
2007-08-02 Werner Koch <wk@g10code.com>
|
||||
|
||||
* t-stringhelp.c (test_compare_filenames): New.
|
||||
|
|
|
@ -832,8 +832,21 @@ show_help( ARGPARSE_OPTS *opts, unsigned flags )
|
|||
puts("\n(A single dash may be used instead of the double ones)");
|
||||
}
|
||||
if( (s=strusage(19)) ) { /* bug reports to ... */
|
||||
char *s2;
|
||||
|
||||
putchar('\n');
|
||||
fputs(s, stdout);
|
||||
s2 = strstr (s, "@EMAIL@");
|
||||
if (s2)
|
||||
{
|
||||
if (s2-s)
|
||||
fwrite (s, s2-s, 1, stdout);
|
||||
fputs (PACKAGE_BUGREPORT, stdout);
|
||||
s2 += 7;
|
||||
if (*s2)
|
||||
fputs (s2, stdout);
|
||||
}
|
||||
else
|
||||
fputs(s, stdout);
|
||||
}
|
||||
fflush(stdout);
|
||||
exit(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue