MySQL, pgsql: per-query server options outside the lookup string. Bug 2546
[exim.git] / src / src / string.c
index 80cf49fdf1b297d14f0d25d43708b98c92e20660..1192a554e9ad9e8529a50b8b0a9d56eedea4ba70 100644 (file)
@@ -574,18 +574,14 @@ uschar *ss = yield = store_get(Ustrlen(s) + 1, is_tainted(s));
 while (*s != 0)
   {
   if (*s != '\\')
-    {
     *ss++ = *s++;
-    }
   else if (isdigit(s[1]))
     {
     *ss++ = (s[1] - '0')*100 + (s[2] - '0')*10 + s[3] - '0';
     s += 4;
     }
   else if (*(++s) != 0)
-    {
     *ss++ = *s++;
-    }
   }
 
 *ss = 0;