mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Fix logic error in recent change
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@25163 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
96e36de9e8
commit
6420905d02
2 changed files with 2 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
|||
http://host to http://host/ to standardise URL used for caching as
|
||||
noted in Apple documentation.
|
||||
* Source/NSURLRequest.m: use case insensitive dictionary for headers.
|
||||
* Source/Additions/GSMime.m: fix error makeing tokens lowercase.
|
||||
|
||||
2007-05-14 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -3012,7 +3012,7 @@ static NSCharacterSet *tokenSet = nil;
|
|||
}
|
||||
t = m;
|
||||
}
|
||||
if (preserve == YES)
|
||||
if (preserve == NO)
|
||||
{
|
||||
t = [t lowercaseString];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue