diff options
author | Marcus Brinkmann <[email protected]> | 2008-06-18 15:16:53 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2008-06-18 15:16:53 +0000 |
commit | df066f970f3f5359228d675266912e7ff5ec306d (patch) | |
tree | 5135ac121b39fdbb9998edec76df87584161c168 /common/sysutils.c | |
parent | 2008-06-18 Marcus Brinkmann <[email protected]> (diff) | |
download | gnupg-df066f970f3f5359228d675266912e7ff5ec306d.tar.gz gnupg-df066f970f3f5359228d675266912e7ff5ec306d.zip |
2008-06-18 Marcus Brinkmann <[email protected]>
* sysutils.c (TRANS_MAX): Bump up to 350 to be on the safe side.
Diffstat (limited to 'common/sysutils.c')
-rw-r--r-- | common/sysutils.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/common/sysutils.c b/common/sysutils.c index 3b6d82c0a..b76c83990 100644 --- a/common/sysutils.c +++ b/common/sysutils.c @@ -314,7 +314,10 @@ static int fd_translate_len; void translate_table_init (void) { -#define TRANS_MAX 100 + /* Hold roughly 8 pairs of 64 bit numbers in hex notation: + "0xFEDCBA9876543210 0xFEDCBA9876543210". 8*19*2 - 1 = 303. This + plans ahead for a time where a HANDLE is 64 bit. */ +#define TRANS_MAX 350 char line[TRANS_MAX + 1]; char *linep; int idx; |