1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

Preparing 2.0.1

This commit is contained in:
Werner Koch 2006-11-28 16:36:02 +00:00
parent fecadab9c3
commit 252b668814
13 changed files with 40 additions and 11 deletions

View file

@ -1,3 +1,8 @@
2006-11-24 Werner Koch <wk@g10code.com>
* certdump.c (parse_dn_part): Take '#' as a special character only
at the beginning of a string.
2006-11-21 Werner Koch <wk@g10code.com>
* certdump.c (my_funopen_hook_ret_t): New.

View file

@ -376,7 +376,7 @@ parse_dn_part (struct dn_array_s *array, const unsigned char *string)
else if (*s == '\"')
return NULL; /* invalid encoding */
else if (*s == ',' || *s == '=' || *s == '+'
|| *s == '<' || *s == '>' || *s == '#' || *s == ';' )
|| *s == '<' || *s == '>' || *s == ';' )
break;
else
n++;