Increase buffer size for --example-hashes output

This commit is contained in:
jsteube
2019-04-08 17:36:26 +02:00
parent 4579ddb5b2
commit 92f4ccce93
5 changed files with 15 additions and 14 deletions
+1
View File
@@ -104,6 +104,7 @@ but this is nededed for VS compiler which doesn't have inline keyword but has __
#define SALT_MAX_OLD 51
#define HCBUFSIZ_TINY 0x1000
#define HCBUFSIZ_SMALL 0x2000
#define HCBUFSIZ_LARGE 0xb0000
#define CPT_CACHE 0x20000
+4 -4
View File
@@ -1519,7 +1519,7 @@ typedef struct outfile_ctx
typedef struct pot
{
char plain_buf[HCBUFSIZ_TINY];
char plain_buf[HCBUFSIZ_SMALL];
int plain_len;
hash_t hash;
@@ -1614,7 +1614,7 @@ typedef struct out
{
FILE *fp;
char buf[HCBUFSIZ_TINY];
char buf[HCBUFSIZ_SMALL];
int len;
} out_t;
@@ -2180,11 +2180,11 @@ typedef struct hashlist_parse
typedef struct event_ctx
{
char old_buf[MAX_OLD_EVENTS][HCBUFSIZ_TINY];
char old_buf[MAX_OLD_EVENTS][HCBUFSIZ_SMALL];
size_t old_len[MAX_OLD_EVENTS];
int old_cnt;
char msg_buf[HCBUFSIZ_TINY];
char msg_buf[HCBUFSIZ_SMALL];
size_t msg_len;
bool msg_newline;