mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
50b71cb1bc
commit
e40a3d2625
3 changed files with 11 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue