patch by Sebastian

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33359 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2011-06-20 12:46:42 +00:00
parent 50b71cb1bc
commit e40a3d2625
3 changed files with 11 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2011-06-20 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
* SSL/GSSSLHandle.m:
* Headers/GNUstepBase/GSFileHandle.h:
Avoid compiler warnings
2011-06-20 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSObject.m: Keep zombie working until after atext stuff has

View file

@ -36,6 +36,9 @@
#include <zlib.h>
#endif
#include <sys/types.h>
#include <netinet/in.h>
/**
* DO NOT USE ... this header is here only for the SSL file handle support
* and is not intended to be used by anyone else ... it is subject to

View file

@ -225,7 +225,7 @@ static BOOL permitSSLv2 = NO;
[super finalize];
}
- (int) read: (void*)buf length: (NSUInteger)len
- (NSInteger) read: (void*)buf length: (NSUInteger)len
{
if (connected)
{
@ -516,7 +516,7 @@ static BOOL permitSSLv2 = NO;
}
}
- (int) write: (const void*)buf length: (NSUInteger)len
- (NSInteger) write: (const void*)buf length: (NSUInteger)len
{
if (connected)
{