mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +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
4532063027
commit
bc1256b6dd
2 changed files with 13 additions and 0 deletions
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
* Tools/gdomap.c: Added some checks that getting/setting uid/gid
|
* Tools/gdomap.c: Added some checks that getting/setting uid/gid
|
||||||
worked as expected and moved getpwnam() call to where it works.
|
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>
|
2003-10-07 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
|
|
@ -3875,6 +3875,17 @@ static NSCharacterSet *tokenSet = nil;
|
||||||
RELEASE(hdr);
|
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)
|
if ([content isKindOfClass: [NSArray class]] == YES)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue