Minor fix

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14271 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2002-08-14 11:39:10 +00:00
parent 5606926df2
commit 337fc209d2
2 changed files with 3 additions and 1 deletions

View file

@ -6,6 +6,8 @@
* Source/NSNumber.m: Output 'YES' as boolean in description.
* Source/NSUserDefaults.m: Set 'YES' as boolean string.
* Headers/Foundation/NSObject.h: Fix v dumb memory leak.
* Source/GSHTTPURLHandle.m: Append crlf to separate headers from body
rather than just an lf.
2002-08-11 Richard Frith-Macdonald <rfm@gnu.org>

View file

@ -727,7 +727,7 @@ static void debugWrite(NSData *data)
[s appendFormat: @"%@: %@\r\n", key, [wProperties objectForKey: key]];
}
[wProperties removeAllObjects];
[s appendString: @"\n"];
[s appendString: @"\r\n"];
buf = [[s dataUsingEncoding: NSASCIIStringEncoding] mutableCopy];
/*