[-]
[+]
|
Changed |
kvpnc-20071103.tar.bz2/ChangeLog
|
@@ -1,3 +1,6 @@
+2007-11-03 Christoph Thielecke <crissi99@gmx.de>
+ first connect doesnt work fixed (bug #9977)
+
2007-11-01 Christoph Thielecke <crissi99@gmx.de>
my_identifier option for racoon added
|
[-]
[+]
|
Changed |
kvpnc-20071103.tar.bz2/src/kvpnc.cpp
^
|
@@ -1783,7 +1783,7 @@
if ( ( vpnc_version_minor == 3 && vpnc_version_minor >= 2 ) || ( vpnc_version_minor > 3 ) )
{
QString UserPassStr = "";
- if ( !GlobalConfig->currentProfile->getUserPassword() || AuthRetry )
+ if ( !GlobalConfig->currentProfile->getUserPassword() || GlobalConfig->currentProfile->getUserPassword() == "" || AuthRetry )
UserPassStr = GlobalConfig->TmpPassword;
else
UserPassStr = GlobalConfig->currentProfile->getUserPassword();
@@ -2347,7 +2347,7 @@
GlobalConfig->appendLogEntry ( i18n ( "Backup file of %1: %1" ).arg ( "resolv.conf" ).arg ( ResolvConfBackupProfile ), GlobalConfig->debug );
QString UserPassStr = "";
- if ( !GlobalConfig->currentProfile->getUserPassword() || AuthRetry )
+ if ( !GlobalConfig->currentProfile->getUserPassword() || GlobalConfig->currentProfile->getUserPassword() == "" || AuthRetry )
UserPassStr = GlobalConfig->TmpPassword;
else
UserPassStr = GlobalConfig->currentProfile->getUserPassword();
|