mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Fix logic of test.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14002 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7c3ccf4322
commit
1ef6e3b9e8
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-07-01 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/Additions/GSMime.m: Correct test for multipart content when
|
||||
generating raw data. Fix by Mark Allison <mark@brainstorm.co.uk>
|
||||
|
||||
2002-06-30 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Headers/gnustep/base/GSFileHandle.h: New version of UnixFileHandle
|
||||
|
|
|
@ -3684,7 +3684,7 @@ static NSCharacterSet *tokenSet = nil;
|
|||
*/
|
||||
[md appendBytes: "\r\n" length: 2];
|
||||
|
||||
if (enc == nil)
|
||||
if ([[type objectForKey: @"Type"] isEqual: @"multipart"] == YES)
|
||||
{
|
||||
unsigned count;
|
||||
unsigned i;
|
||||
|
|
Loading…
Reference in a new issue