pkgsrc/net/pppd/patches/patch-at
cube 3e86158156 Initial import of pppd, version 2.4.3, into the NetBSD Package Collection.
The PPP Daemon is the userland part of the Point-to-Point Protocol.  It works
in combination with a dedicated kernel network interface usually named ppp.
PPP is a very extensible protocol and pppd supports a large number of options,
including compression (through various algorithms), cryptography (Microsoft's
MPPE) and authentication (PAP, CHAP, Microsoft CHAP), provided the kernel has
the relevant back-ends in some cases.
2005-01-02 02:51:40 +00:00

13 lines
359 B
Text

$NetBSD: patch-at,v 1.1.1.1 2005/01/02 02:51:42 cube Exp $
--- pppd/multilink.c.orig 2004-11-13 09:57:36.000000000 +0100
+++ pppd/multilink.c
@@ -570,7 +570,7 @@ str_to_epdisc(ep, str)
if (*str == 0)
break;
if (p <= str)
- for (p = str; isxdigit(*p); ++p)
+ for (p = str; isxdigit((unsigned char)*p); ++p)
;
i = p - str;
if (i == 0)