From: brian Date: Tue, 28 Mar 2000 15:13:09 +0000 (+0000) Subject: Don't treat # specially here X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=d45d53aaea335ac6b4f08783ff6e457c2628b9e6;p=openbsd Don't treat # specially here --- diff --git a/usr.sbin/ppp/ppp/systems.c b/usr.sbin/ppp/ppp/systems.c index 99bd9986843..a4a08badb76 100644 --- a/usr.sbin/ppp/ppp/systems.c +++ b/usr.sbin/ppp/ppp/systems.c @@ -17,7 +17,7 @@ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * $OpenBSD: systems.c,v 1.12 2000/03/19 10:33:34 brian Exp $ + * $OpenBSD: systems.c,v 1.13 2000/03/28 15:13:09 brian Exp $ * * TODO: */ @@ -150,12 +150,6 @@ InterpretArg(const char *from, char *to) endpwent(); break; - case '#': - if (!instring) - while (*from != '\0') - *to++ = *from++; - break; - default: *to++ = *from++; break;