From mboxrd@z Thu Jan 1 00:00:00 1970 From: "William S ." To: 9fans@cse.psu.edu Subject: Re: [9fans] pptp.c install failed Message-ID: <20011112191352.A220@213-84-71-105.adsl.xs4all.nl> References: <20011111203540.6A60E19A55@mail.cse.psu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20011111203540.6A60E19A55@mail.cse.psu.edu>; from rsc@plan9.bell-labs.com on Sun, Nov 11, 2001 at 03:35:38PM -0500 Date: Mon, 12 Nov 2001 19:13:53 +0100 Topicbox-Message-UUID: 1f4f5776-eaca-11e9-9e20-41e7f4b1d025 OK, I applied the changes as you specified below and it installed. However, when I ran pptp this happened: term% ip/ipconfig ether /net/ether0 10.0.0.150 255.255.255.0 ip/ipconfig: binding device: dial 0x800 failed term% Is something configured incorrectly that I need to change? Thank you, Bill On Sun, Nov 11, 2001 at 03:35:38PM -0500, Russ Cox wrote: > > pptp.c:92 function args not checked: threadnonotes > > threadnonotes is in the 03270425a update. > > > pptp.c:671 name not declared: ERRMAX > > pptp.c:671 array size must be a positive constant > > pptp.c:674 function args not checked: rerrstr > > sorry. i was using a new interface. > change it to e[ERRLEN] and rerrstr(e) and > add the function > > void > rerrstr(char *buf) > { > char tmp[ERRLEN]; > > errstr(tmp); > memmove(buf, tmp, ERRLEN); > errstr(tmp); > } > > before there. > > russ