1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-03 13:03:50 +00:00

(trunk libT) fix minor r8394 bug

This commit is contained in:
Charles Kerr 2009-05-14 18:37:24 +00:00
parent 79f17a374a
commit 7599172836

View file

@ -404,7 +404,7 @@ tr_netBindTCP( const tr_address * addr, tr_port port, tr_bool suppressMsgs )
if( !suppressMsgs )
tr_err( _( "Couldn't bind port %d on %s: %s" ),
port, tr_ntop_non_ts( addr ), tr_strerror( err ) );
tr_netClose( fd );
EVUTIL_CLOSESOCKET( fd );
return -err;
}