mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Minor bugfix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17800 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a4f4d11852
commit
c4548e04c0
2 changed files with 13 additions and 0 deletions
|
@ -2,6 +2,8 @@
|
|||
|
||||
* Tools/gdomap.c: Added some checks that getting/setting uid/gid
|
||||
worked as expected and moved getpwnam() call to where it works.
|
||||
* Source/Additions/GSMime.m: ([GSMimeDocument-rawMimeData:]) bugfix
|
||||
to remove mjime version header from inner documents.
|
||||
|
||||
2003-10-07 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
|
|
|
@ -3875,6 +3875,17 @@ static NSCharacterSet *tokenSet = nil;
|
|||
RELEASE(hdr);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
/*
|
||||
* Inner documents should not contain the mime version header.
|
||||
*/
|
||||
hdr = [self headerNamed: @"mime-version"];
|
||||
if (hdr != nil)
|
||||
{
|
||||
[self deleteHeader: hdr];
|
||||
}
|
||||
}
|
||||
|
||||
if ([content isKindOfClass: [NSArray class]] == YES)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue