diff options
author | max <max@FreeBSD.org> | 1997-06-21 13:05:53 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-06-21 13:05:53 +0800 |
commit | 5696c80626dc32cd0f85b0dced1db8d64bb45a80 (patch) | |
tree | 82b6aef12ba17a7828394fd04f615b67f1b02fd2 /x11 | |
parent | 7c7d90dc9429e68c4cfeb4cce53297ea36840a5a (diff) | |
download | freebsd-ports-gnome-5696c80626dc32cd0f85b0dced1db8d64bb45a80.tar.gz freebsd-ports-gnome-5696c80626dc32cd0f85b0dced1db8d64bb45a80.tar.zst freebsd-ports-gnome-5696c80626dc32cd0f85b0dced1db8d64bb45a80.zip |
Correctly specify the path of pppd in Dialer script.
PR: 3574
Pointed-out by: "David O'Brien" <obrien@NUXI.com>
Diffstat (limited to 'x11')
-rw-r--r-- | x11/tkgoodstuff/files/patch-ad | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/x11/tkgoodstuff/files/patch-ad b/x11/tkgoodstuff/files/patch-ad new file mode 100644 index 000000000000..b13af0a0e414 --- /dev/null +++ b/x11/tkgoodstuff/files/patch-ad @@ -0,0 +1,20 @@ +--- tcl/Dialer.tcl.orig Sat Dec 14 01:31:43 1996 ++++ tcl/Dialer.tcl Sat Jun 21 13:57:07 1997 +@@ -48,7 +48,7 @@ + { myloginname@umich.edu "Password: " 5} + {mypassword "" "" } + } +-set outcommand "/usr/lib/ppp/pppd $port $speed asyncmap 0 defaultroute crtscts modem noipdefault" ++set outcommand "/usr/sbin/pppd $port $speed asyncmap 0 defaultroute crtscts modem noipdefault" + set exitsucc 0 + + option add *Listbox*font \ +@@ -678,7 +678,7 @@ + the server (through the login script, as described below). Here you\ + can start, for instance, ppp or term. The author, for his dynamic ppp\ + connection from home, uses: +-\ \ \ \"/usr/lib/ppp/pppd /dev/modem 38400 asyncmap 0 defaultroute crtscts\ ++\ \ \ \"/usr/sbin/pppd /dev/modem 38400 asyncmap 0 defaultroute crtscts\ + modem noipdefault\" + + There is a checkbox which enables using the login script (on which more\ |