|
From: James C. <qu...@us...> - 2006-08-02 07:02:49
|
Update of /cvsroot/pptpclient/pptp-linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25496 Modified Files: ChangeLog Makefile NEWS RELEASING pptpsetup Log Message: Index: ChangeLog =================================================================== RCS file: /cvsroot/pptpclient/pptp-linux/ChangeLog,v retrieving revision 1.107 retrieving revision 1.108 diff -u -d -r1.107 -r1.108 --- ChangeLog 2 Aug 2006 06:22:34 -0000 1.107 +++ ChangeLog 2 Aug 2006 07:02:47 -0000 1.108 @@ -1,7 +1,9 @@ Wed Aug 2 16:21:08 2006 James Cameron <qu...@us...> * routing.c, routing.h, pptp_callmgr.c (callmgr_main): add route - to pptp server. Experimental feature. + to PPTP server. Experimental feature. Note that this has a + side-effect of leaving a route to the server in place after the + tunnel has terminated. Wed Aug 2 16:19:06 2006 James Cameron <qu...@us...> Index: Makefile =================================================================== RCS file: /cvsroot/pptpclient/pptp-linux/Makefile,v retrieving revision 1.42 retrieving revision 1.43 diff -u -d -r1.42 -r1.43 --- Makefile 2 Aug 2006 06:22:34 -0000 1.42 +++ Makefile 2 Aug 2006 07:02:47 -0000 1.43 @@ -56,6 +56,7 @@ install: mkdir -p $(BINDIR) install -o root -m 555 pptp $(BINDIR) + install -o root -m 555 pptpsetup $(BINDIR) mkdir -p $(MANDIR) install -m 644 pptp.8 $(MANDIR) mkdir -p $(PPPDIR) Index: NEWS =================================================================== RCS file: /cvsroot/pptpclient/pptp-linux/NEWS,v retrieving revision 1.51 retrieving revision 1.52 diff -u -d -r1.51 -r1.52 --- NEWS 2 Aug 2006 06:22:34 -0000 1.51 +++ NEWS 2 Aug 2006 07:02:47 -0000 1.52 @@ -1,3 +1,4 @@ +- add route to PPTP server [Cameron] - remove non-free reference documentation [Cameron] - fix quoting and pppd options [Lundqvist] - pptpsetup script (Debian Bug #167216?) [Ferraz] Index: RELEASING =================================================================== RCS file: /cvsroot/pptpclient/pptp-linux/RELEASING,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- RELEASING 13 Feb 2006 04:13:16 -0000 1.10 +++ RELEASING 2 Aug 2006 07:02:47 -0000 1.11 @@ -8,8 +8,8 @@ # set shell variables for version # (use -rc1 for release candidate 1, or blank for final release) -VERSION=1.7.1 -RELEASE= +VERSION=1.7.2 +RELEASE=-rc1 TAG_VERSION=`echo ${VERSION}|tr . _` export VERSION RELEASE TAG_VERSION Index: pptpsetup =================================================================== RCS file: /cvsroot/pptpclient/pptp-linux/pptpsetup,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- pptpsetup 2 Aug 2006 06:22:34 -0000 1.3 +++ pptpsetup 2 Aug 2006 07:02:47 -0000 1.4 @@ -190,7 +190,7 @@ } sub Check_MPPE_in_pppd { - my $command = q/strings \`which pppd\`|grep -i mppe|wc --lines/; + my $command = q/strings `which pppd`|grep -i mppe|wc --lines/; my $answer = `$command`; if ($answer > 0) { # ok! |