FInally login correctly to IAX.

This commit is contained in:
Jonathan Naylor
2024-08-12 14:32:00 +01:00
parent ee886f030d
commit 4214328754
3 changed files with 5 additions and 9 deletions

View File

@@ -149,7 +149,7 @@ void Log(unsigned int level, const char* fmt, ...)
{
assert(fmt != NULL);
char buffer[501U];
char buffer[2000U];
#if defined(_WIN32) || defined(_WIN64)
SYSTEMTIME st;
::GetSystemTime(&st);
@@ -167,7 +167,7 @@ void Log(unsigned int level, const char* fmt, ...)
va_list vl;
va_start(vl, fmt);
::vsnprintf(buffer + ::strlen(buffer), 500, fmt, vl);
::vsnprintf(buffer + ::strlen(buffer), 1900, fmt, vl);
va_end(vl);