Don't convert 0.0.0.0 into 192.0.0.1. I can find no sane reason to do this.

This commit is contained in:
David Greenman 1995-07-04 02:57:11 +00:00
parent d32dc73f83
commit 0fe81aafec
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=9388

View File

@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: ipcp.c,v 1.3 1995/03/11 15:18:44 amurai Exp $
* $Id: ipcp.c,v 1.4 1995/05/30 03:50:38 rgrimes Exp $
*
* TODO:
* o More RFC1772 backwoard compatibility
@ -160,8 +160,6 @@ IpcpInit()
icp->want_ipaddr.s_addr = DefMyAddress.ipaddr.s_addr;
icp->his_ipaddr.s_addr = DefHisAddress.ipaddr.s_addr;
}
if (icp->want_ipaddr.s_addr == 0)
icp->want_ipaddr.s_addr = htonl(0xc0000001);
if (Enabled(ConfVjcomp))
icp->want_compproto = (PROTO_VJCOMP << 16) | ((MAX_STATES - 1) << 8);
else