increased message buffer to cope with NCP's innumerable UNITY Configuration Payloads

This commit is contained in:
Andreas Steffen 2011-08-16 23:22:20 +02:00
parent 65d5f6bc2b
commit a022f0863d
1 changed files with 2 additions and 2 deletions

View File

@ -1079,7 +1079,7 @@ METHOD(message_t, generate, status_t,
encryption_payload_t *encryption = NULL;
enumerator_t *enumerator;
chunk_t chunk;
char str[256];
char str[BUF_LEN];
u_int32_t *lenpos;
bool *reserved;
int i;
@ -1448,7 +1448,7 @@ METHOD(message_t, parse_body, status_t,
status_t status = SUCCESS;
payload_t *payload;
payload_type_t type;
char str[256];
char str[BUF_LEN];
type = this->first_payload;