Increase log buffer size, so that 255 hex bytes still can be logged

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1429 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
sth 2003-09-08 13:38:07 +00:00
parent 0c37fe2f79
commit e6f3f9bb08
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ void sc_do_log(struct sc_context *ctx, int type, const char *file, int line, con
void sc_do_log_va(struct sc_context *ctx, int type, const char *file, int line, const char *func, const char *format, va_list args)
{
FILE *outf = NULL;
char buf[1024], *p;
char buf[1536], *p;
int left, r;
const char *color_pfx = "", *color_sfx = "";