Merge pull request #808 in FS/freeswitch from ~AKARUKOV/fs-9072-fix:bugfix/FS-9072-fix to master

* commit '50bf8dcddd6c0d045225029e633d1b4a0e13c3d9':
  FS-9072: [mod_syslog] Allow logging of messages with tab character
This commit is contained in:
Mike Jerris 2016-04-14 10:28:24 -05:00
commit cb07788675
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ static int find_unprintable(const char *s)
const char *p;
for(p = s; p && *p; p++) {
if (*p < 10 || *p == 27) {
if (*p < 9 || *p == 27) {
return 1;
}
}