[xiph-commits] r18361 - icecast/trunk/log

ph3-der-loewe at svn.xiph.org ph3-der-loewe at svn.xiph.org
Thu Jun 7 11:09:48 PDT 2012


Author: ph3-der-loewe
Date: 2012-06-07 11:09:48 -0700 (Thu, 07 Jun 2012)
New Revision: 18361

Modified:
   icecast/trunk/log/log.c
Log:
consider backticks as well as backslashes invalid chars

Modified: icecast/trunk/log/log.c
===================================================================
--- icecast/trunk/log/log.c	2012-06-07 17:59:16 UTC (rev 18360)
+++ icecast/trunk/log/log.c	2012-06-07 18:09:48 UTC (rev 18361)
@@ -518,7 +518,7 @@
                     {
                         for (; *arg && block_len && size; arg++, size--)
                         {
-                            if (*arg <= '"')
+                            if (*arg <= '"' || *arg == '`'  || *arg == '\\')
                                 *(str++) = '.';
                             else
                                 *(str++) = *arg;



More information about the commits mailing list