1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

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
This commit is contained in:
Kris Kennaway 1999-04-30 13:40:53 +00:00
parent 97c42220fd
commit e517e9a8f6
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=18220

15
net/mpd/files/patch-ab Normal file
View File

@ -0,0 +1,15 @@
--- 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;