From: Paul Mackerras Date: Mon, 10 Jan 1994 00:19:28 +0000 (+0000) Subject: fix bug in option word processing X-Git-Tag: ppp-2-1-2a~102 X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=e2d23e7d5daf07b5809498d3af40e690d5db3299 fix bug in option word processing --- diff --git a/pppd/options.c b/pppd/options.c index 769d2e8..1972516 100644 --- a/pppd/options.c +++ b/pppd/options.c @@ -18,7 +18,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: options.c,v 1.2 1993/11/23 23:40:53 paulus Exp $"; +static char rcsid[] = "$Id: options.c,v 1.3 1994/01/10 00:19:28 paulus Exp $"; #endif #include @@ -461,7 +461,7 @@ getword(f, word, newlinep, filename) word[len] = c; ++len; if (c == '\\') - quoted = 1; + escape = 1; } if ((c = getc(f)) == EOF) break;