Skip to content

Commit

Permalink
Fix missing " at the end of first line in GPRS script
Browse files Browse the repository at this point in the history
it creates the chat config file in
/home/root/Applications/Network/chat/connect-dialup000000000
the first line misses an ending "
then, gprs connection fails and ppp stop after a
chat: missing ending "
  • Loading branch information
pierrenopicnic authored and radekp committed Sep 2, 2010
1 parent 66b9ea0 commit bd67ea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/network/dialing/config.cpp
Expand Up @@ -340,7 +340,7 @@ int DialupUI::writeSystemFiles()

// write chat scripts
QString st;
st = "\"\" \"\\K\\K\\K\\d+++ATH\n" // No tr
st = "\"\" \"\\K\\K\\K\\d+++ATH\"\n" // No tr
"ABORT \"NO CARRIER\"\n" // No tr
"ABORT \"NO DIALTONE\"\n" // No tr
"ABORT \"BUSY\"\n" // No tr
Expand Down

0 comments on commit bd67ea6

Please sign in to comment.