Browse Source

fix start_pppd for pptp (closes: #1612)

SVN-Revision: 7027
Nicolas Thill 18 years ago
parent
commit
942d07de9a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      package/pptp/files/pptp.sh

+ 2 - 2
package/pptp/files/pptp.sh

@@ -17,7 +17,7 @@ setup_interface_pptp() {
 	config_get server "$cfg" server
 	mtu=${mtu:-1452}
 	start_pppd "$config" \
-		pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd"
-		file /etc/ppp/options.pptp
+		pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd" \
+		file /etc/ppp/options.pptp \
 		mtu $mtu mru $mtu
 }