View | Details | Raw Unified | Return to bug 150519
Collapse All | Expand All

(-)libtransmission/fdlimit.c (-1 / +1 lines)
Lines 646-652 Link Here
646
    if( gFd->socketCount < gFd->socketLimit )
646
    if( gFd->socketCount < gFd->socketLimit )
647
        if( ( s = socket( domain, type, 0 ) ) < 0 )
647
        if( ( s = socket( domain, type, 0 ) ) < 0 )
648
        {
648
        {
649
            if( sockerrno != EAFNOSUPPORT )
649
            if( sockerrno != EPROTONOSUPPORT )
650
                tr_err( _( "Couldn't create socket: %s" ),
650
                tr_err( _( "Couldn't create socket: %s" ),
651
                        tr_strerror( sockerrno ) );
651
                        tr_strerror( sockerrno ) );
652
        }
652
        }

Return to bug 150519