Summary: | Host part of news://host.name.tld/ URL is handled case sensitive | ||
---|---|---|---|
Product: | [Unmaintained] knode | Reporter: | Stefan Brüns <stefan.bruens> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version First Reported In: | unspecified | ||
Target Milestone: | --- | ||
Platform: | openSUSE | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Stefan Brüns
2004-07-12 08:09:52 UTC
CVS commit by maragato: Ignore case when comparing hostnames. CCMAIL: 84982-done@bugs.kde.org M +1 -1 knmainwidget.cpp 1.44 --- kdepim/knode/knmainwidget.cpp #1.43:1.44 @@ -476,5 +476,5 @@ void KNMainWidget::openURL(const KURL &u // lets see if we already have an account for this host... for(acc=a_ccManager->first(); acc; acc=a_ccManager->next()) - if( acc->server()==host && (port==0 || acc->port()==port) ) + if( acc->server().lower()==host.lower() && (port==0 || acc->port()==port) ) break; |