mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
gpgscm: Fix for CHARNAMES.
* tests/gpgscm/scheme.c (charnames): It's an array of strings, not fixed size characters. -- GnuPG-bug-id: 7623 Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
parent
07dc08aa81
commit
0070c2e3b4
1 changed files with 1 additions and 1 deletions
|
@ -360,7 +360,7 @@ static INLINE int Cislower(int c) { return isascii(c) && islower(c); }
|
|||
#endif
|
||||
|
||||
#if USE_ASCII_NAMES
|
||||
static const char charnames[32][3]={
|
||||
static const char *charnames[32]={
|
||||
"nul",
|
||||
"soh",
|
||||
"stx",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue