diff options
Diffstat (limited to 'usr.sbin/ospf6d/parse.y')
-rw-r--r-- | usr.sbin/ospf6d/parse.y | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.sbin/ospf6d/parse.y b/usr.sbin/ospf6d/parse.y index eb3cf9830e6..0a362674ee0 100644 --- a/usr.sbin/ospf6d/parse.y +++ b/usr.sbin/ospf6d/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.6 2007/10/13 16:35:22 deraadt Exp $ */ +/* $OpenBSD: parse.y,v 1.7 2007/10/16 06:06:49 deraadt Exp $ */ /* * Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org> @@ -742,8 +742,10 @@ top: } else if (c == '\\') { if ((next = lgetc(quotec)) == EOF) return (0); - if (next == quotec) + if (next == quotec || c == ' ' || c == '\t') c = next; + else if (next == '\n') + continue; else lungetc(next); } else if (c == quotec) { |