summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrian <brian@openbsd.org>2000-03-28 15:13:09 +0000
committerbrian <brian@openbsd.org>2000-03-28 15:13:09 +0000
commitd45d53aaea335ac6b4f08783ff6e457c2628b9e6 (patch)
treeee1a5226566ea1945e05d1a6b4200725e62647db
parentfix sanity checks to allow authentication-only ESP (diff)
downloadwireguard-openbsd-d45d53aaea335ac6b4f08783ff6e457c2628b9e6.tar.xz
wireguard-openbsd-d45d53aaea335ac6b4f08783ff6e457c2628b9e6.zip
Don't treat # specially here
-rw-r--r--usr.sbin/ppp/ppp/systems.c8
1 files changed, 1 insertions, 7 deletions
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;