diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 02:38:53 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 02:38:53 -0500 |
commit | ea0d650fb3783639cf9d431f3e817ab51ba6130a (patch) | |
tree | 6f464b79b4b52582fc7a807576f71619a41db9d5 | |
parent | c475079dc522ad31c0147cdfcb9c7a1046b7b15d (diff) | |
download | kvpnc-ea0d650fb3783639cf9d431f3e817ab51ba6130a.tar.gz kvpnc-ea0d650fb3783639cf9d431f3e817ab51ba6130a.zip |
Fix inadvertent "TQ" changes.
-rw-r--r-- | src/kvpnc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kvpnc.cpp b/src/kvpnc.cpp index c3746a7..c89de2f 100644 --- a/src/kvpnc.cpp +++ b/src/kvpnc.cpp @@ -13733,7 +13733,7 @@ void KVpnc::readFromStdout_ipsecwhack() IpsecGotError = true; IpsecWhackStatusTimer.stop(); } - else if ( ProcessMsg_connect.find ( "deleting state (STATE_TQUICK_I1)", 0 , FALSE ) > -1 || ProcessMsg_connect.find ( "deleting state (STATE_MAIN_I3)", 0 , FALSE ) > -1 || ProcessMsg_connect.find ( "deleting state (STATE_MAIN_I2)", 0 , FALSE ) > -1 ) + else if ( ProcessMsg_connect.find ( "deleting state (STATE_QUICK_I1)", 0 , FALSE ) > -1 || ProcessMsg_connect.find ( "deleting state (STATE_MAIN_I3)", 0 , FALSE ) > -1 || ProcessMsg_connect.find ( "deleting state (STATE_MAIN_I2)", 0 , FALSE ) > -1 ) { //KMessageBox::error ( this, i18n ( "Phase 1 was deleted. Disconnecting." ).arg ( IpsecType ) ); GlobalConfig->appendLogEntry ( i18n ( "Phase 1 was deleted. Disconnecting." ).arg ( IpsecType ) , GlobalConfig->error ); @@ -14014,7 +14014,7 @@ void KVpnc::readFromStdout_ipsecwhacklisten() GlobalConfig->appendLogEntry ( "[ipsec whack listen] " + i18n ( "Listen was successful." ), GlobalConfig->debug ); start_ipsec_initiate(); } - else if ( ProcessMsg_connect.find ( "ISAKMP SA established", 0 , FALSE ) > -1 || ProcessMsg_connect.find ( "transition from state STATE_TQUICK_I1 to state STATE_TQUICK_I2", 0 , FALSE ) > -1 ) + else if ( ProcessMsg_connect.find ( "ISAKMP SA established", 0 , FALSE ) > -1 || ProcessMsg_connect.find ( "transition from state STATE_QUICK_I1 to state STATE_QUICK_I2", 0 , FALSE ) > -1 ) { timer.stop(); @@ -14229,7 +14229,7 @@ void KVpnc::readFromStdout_ipsecwhackstatus() if ( ProcessMsg_connect.find ( TQString ( GlobalConfig->currentProfile->getName() ), 0, FALSE ) > -1 ) { - if ( ProcessMsg_connect.find ( "ISAKMP SA established", 0 , FALSE ) > -1 || ProcessMsg_connect.find ( "transition from state STATE_TQUICK_I1 to state STATE_TQUICK_I2", 0 , FALSE ) > -1 ) + if ( ProcessMsg_connect.find ( "ISAKMP SA established", 0 , FALSE ) > -1 || ProcessMsg_connect.find ( "transition from state STATE_QUICK_I1 to state STATE_QUICK_I2", 0 , FALSE ) > -1 ) { timer.stop(); |