chiark / gitweb /
Fixed misdequoting of \<newline> in "-quoted strings; Removed -Werror by default...
[userv.git] / parser.c
index ad0829d6911ce669384b0c908e4d4e7b5851f7e2..b00baac7dc75a7983af9595d8a0c35aa385250fd 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -179,7 +179,7 @@ static int dequote(char *inplace) {
         *q++= *p++; continue;
       } else {
        while (*p==' ' || *p=='\t') p++;
-       assert(*p=='\n');
+       v= *p++; assert(v=='\n');
       }
     }
   }