Changeset 5193 for trunk/libtransmission/fdlimit.c
- Timestamp:
- Mar 4, 2008, 2:02:25 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/fdlimit.c
r5107 r5193 164 164 if( file->fd == -1 ) { 165 165 const int err = errno; 166 tr_err( "Couldn't open '%s': %s", filename, tr_strerror(err) );166 tr_err( _( "Couldn't open \"%s\": %s" ), filename, tr_strerror(err) ); 167 167 return tr_ioErrorFromErrno( err ); 168 168 } … … 388 388 if( isReserved || ( gFd->normal < getSocketMax( gFd ) ) ) 389 389 if( ( s = socket( AF_INET, type, 0 ) ) < 0 ) 390 tr_err( "Couldn't create socket (%s)", tr_strerror( sockerrno ) );390 tr_err( _( "Couldn't create socket: %s" ), tr_strerror( sockerrno ) ); 391 391 392 392 if( s > -1 )
Note: See TracChangeset
for help on using the changeset viewer.