1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-07 22:58:11 +00:00
freebsd-ports/net/mpd/files/patch-ab
Kris Kennaway e517e9a8f6 Unbreak (Makefile defines -Werror, which is causing problems in the new
world order of egcs due to some trivial warnings).

Prompted by:	bento.freebsd.org
1999-04-30 13:40:53 +00:00

16 lines
403 B
Plaintext

--- src/lcp.c.orig Fri Apr 30 22:52:21 1999
+++ src/lcp.c Sun Apr 25 23:34:35 1999
@@ -856,10 +856,12 @@
if (bogus || !supported)
{
if (mode == MODE_REQ)
+ {
if (Acceptable(&lnk->conf.options, LINK_CONF_CHAP))
FsmNak(fp, &chapNak);
else if (Acceptable(&lnk->conf.options, LINK_CONF_PAP))
FsmNak(fp, &papNak);
+ }
else
FsmRej(fp, opt);
break;