Fix backloging error when one character message.

This commit is contained in:
Arnaud Cornet 2007-12-08 16:12:05 +01:00
parent 1a9a72432b
commit e1fb3e42ff
1 changed files with 1 additions and 1 deletions

View File

@ -823,7 +823,7 @@ char *log_beautify(log_t *logdata, char *buf, char *dest)
p++;
if (!p[0] || p[0] != ')' || !p[1] || p[1] != ':' ||
!p[2] || p[2] != ' ' || !p[3] || !p[4])
!p[2] || p[2] != ' ' || !p[3])
return _log_wrap(dest, buf);
p += 3;
} else {