Changeset 4171
- Timestamp:
- Dec 15, 2007, 3:17:50 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/net.c
r4170 r4171 132 132 && ( sockerrno != EINPROGRESS ) ) 133 133 { 134 tr_err( "Couldn't connect socket (%s)", strerror( sockerrno ) ); 134 tr_err( "Couldn't connect socket %d to %s, port %d (errno %d - %s)", 135 s, inet_ntoa(*addr), port, 136 sockerrno, strerror(sockerrno) ); 135 137 tr_netClose( s ); 136 return-1;138 s = -1; 137 139 } 138 140
Note: See TracChangeset
for help on using the changeset viewer.