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:
rfm 2009-09-18 10:29:41 +00:00
parent 7b0573fc9f
commit d8839e23ce

View file

@ -1120,17 +1120,13 @@ NSString * const GSSOCKSRecvAddr = @"GSSOCKSRecvAddr";
{ {
if (GetFileType(h) == FILE_TYPE_PIPE) 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) if (GetNamedPipeInfo(h, 0, 0, 0, 0) == 0)
{ {
isSocket = YES; isSocket = YES;
} }
} }
else
{
NSLog(@"Not a pipe");
}
} }
isNonBlocking = 0; isNonBlocking = 0;