aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/plupload
diff options
context:
space:
mode:
authorMáté Bartus <mate.bartus@gmail.com>2015-07-09 02:07:48 +0200
committerMáté Bartus <mate.bartus@gmail.com>2015-07-09 02:07:48 +0200
commit46e6a4e61fa6a38540aa87f37200f3007f10f13f (patch)
tree3d2d81607711990de2fc22e08dc03ddbd363d13e /phpBB/phpbb/plupload
parent01097a24b50a6ffa0662740bbf418399ed5623f2 (diff)
parent80f91da9b9ab7f4c2d66ba5632802a3a5dfa489f (diff)
downloadforums-46e6a4e61fa6a38540aa87f37200f3007f10f13f.tar
forums-46e6a4e61fa6a38540aa87f37200f3007f10f13f.tar.gz
forums-46e6a4e61fa6a38540aa87f37200f3007f10f13f.tar.bz2
forums-46e6a4e61fa6a38540aa87f37200f3007f10f13f.tar.xz
forums-46e6a4e61fa6a38540aa87f37200f3007f10f13f.zip
Merge pull request #3752 from VSEphpbb/ticket/13995
[ticket/13995] Fix errors in tests from merge conflict
Diffstat (limited to 'phpBB/phpbb/plupload')
0 files changed, 0 insertions, 0 deletions
Pascal Rigaux <pixel@mandriva.com>2002-11-11 13:25:04 +0000 commitde74485baf2c4901f1b53aab7073885c69cf0776 (patch) treecff7f3e554bf3e43a4b009c94a5da4e01b01c8ef parent9dba0e05623a219d105b8074e59a1e917d0d4861 (diff)downloaddrakx-de74485baf2c4901f1b53aab7073885c69cf0776.tar
drakx-de74485baf2c4901f1b53aab7073885c69cf0776.tar.gz
drakx-de74485baf2c4901f1b53aab7073885c69cf0776.tar.bz2
drakx-de74485baf2c4901f1b53aab7073885c69cf0776.tar.xz
drakx-de74485baf2c4901f1b53aab7073885c69cf0776.zip
replace qq{...} with qq(...)
Diffstat
-rw-r--r--perl-install/network/adsl.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/network/adsl.pm b/perl-install/network/adsl.pm
index 57eb93ff7..c90913c62 100644
--- a/perl-install/network/adsl.pm
+++ b/perl-install/network/adsl.pm
@@ -126,7 +126,7 @@ defaultroute
if ($adsl_type eq 'speedtouch') {
$netc->{vpivci} =~ /(\d+)_(\d+)/;
output("$prefix/etc/ppp/peers/adsl",
-qq{noauth
+qq(noauth
noipdefault
pty "/usr/bin/pppoa3 -vpi $1 -vci $2"
sync
@@ -141,7 +141,7 @@ persist
usepeerdns
defaultroute
user "$adsl->{login}"
-});
+));
modules::add_alias($_->[0], $_->[1]) foreach (['char-major-108', 'ppp_generic'],
['tty-ldisc-3', 'ppp_async'],
['tty-ldisc-13', 'n_hdlc'],
@@ -160,7 +160,7 @@ and copy the mgmt.o in /usr/share/speedtouch"));
if ($adsl_type eq 'eci') {
$netc->{vpivci} =~ /(\d+)_(\d+)/;
output("$prefix/etc/ppp/peers/adsl",
-qq{debug
+qq(debug
kdebug 1
noipdefault
defaultroute
@@ -177,7 +177,7 @@ maxfail 10
usepeerdns
noauth
lcp-echo-interval 0
-});
+));
modules::add_alias($_->[0], $_->[1]) foreach (['char-major-108', 'ppp_generic'],
['tty-ldisc-14', 'ppp_synctty'],
['tty-ldisc-13', 'n_hdlc']);