mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
a static declaration was missing. Fixing it
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@18068 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
fe44315405
commit
2665ac707b
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-11-09 Frederic De Jaeger <dejaeger@free.fr>
|
||||
|
||||
* Source/GSFileHandle.m ([GSFileHandle
|
||||
-initAsClientInBackgroundAtAddress:service:protocol:forModes:]):
|
||||
the boolean 'beenHere' must be declared static. Fixing it.
|
||||
|
||||
2003-11-06 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* Source/GSPrivate.h (GS_REPLACE_CONSTANT_STRING): New macro.
|
||||
|
|
|
@ -682,7 +682,7 @@ NSString * const GSSOCKSRecvAddr = @"GSSOCKSRecvAddr";
|
|||
{
|
||||
static NSString *esocks = nil;
|
||||
static NSString *dsocks = nil;
|
||||
BOOL beenHere = NO;
|
||||
static BOOL beenHere = NO;
|
||||
SOCKET net;
|
||||
struct sockaddr_in sin;
|
||||
NSString *shost = nil;
|
||||
|
|
Loading…
Reference in a new issue