mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 20:20:07 +00:00
debugging shows that we always need more than 128 bytes
for the verbose and logging messages so start with a larger buffer from the beginning. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@48558 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -138,10 +138,10 @@ static int colors[] = {
|
||||
};
|
||||
|
||||
AST_THREADSTORAGE(verbose_buf);
|
||||
#define VERBOSE_BUF_INIT_SIZE 128
|
||||
#define VERBOSE_BUF_INIT_SIZE 256
|
||||
|
||||
AST_THREADSTORAGE(log_buf);
|
||||
#define LOG_BUF_INIT_SIZE 128
|
||||
#define LOG_BUF_INIT_SIZE 256
|
||||
|
||||
static int make_components(char *s, int lineno)
|
||||
{
|
||||
|
Reference in New Issue
Block a user