Remove spurous NSLog

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@28703 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2009-09-18 10:29:41 +00:00
parent fd54363e2c
commit 6f8f291819

View file

@ -1120,17 +1120,13 @@ NSString * const GSSOCKSRecvAddr = @"GSSOCKSRecvAddr";
{
if (GetFileType(h) == FILE_TYPE_PIPE)
{
/* If we can't get named pipe ino, we assume this is a socket.
/* If we can't get named pipe info, we assume this is a socket.
*/
if (GetNamedPipeInfo(h, 0, 0, 0, 0) == 0)
{
isSocket = YES;
}
}
else
{
NSLog(@"Not a pipe");
}
}
isNonBlocking = 0;