mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-26 18:21:04 +00:00
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:
parent
7b0573fc9f
commit
d8839e23ce
1 changed files with 1 additions and 5 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue