提交 cb077886 authored 作者: Mike Jerris's avatar Mike Jerris

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

* commit '50bf8dcd':
  FS-9072: [mod_syslog] Allow logging of messages with tab character
......@@ -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;
}
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论