SVN commit 919418 by toma: Make the user part optional. M +1 -1 kpasswdserver.cpp --- trunk/KDE/kdebase/runtime/kpasswdserver/kpasswdserver.cpp #919417:919418 @@ -321,7 +321,7 @@ << current->info.username; if (current->info.url.protocol() == protocol && current->info.url.host() == host && - current->info.username == user) + (current->info.username == user || user.isEmpty())) { kDebug(130) << "Removing this entry"; removeAuthInfoItem(dictIterator.key(), current->info);