1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-20 21:26:53 +00:00

Make it a little easier to trace backwards from "Unspecified I/O error" to find out what the real problem is.

This commit is contained in:
Charles Kerr 2008-07-30 14:46:45 +00:00
parent 18e9611751
commit 978b60b8ad

View file

@ -577,7 +577,7 @@ tr_ioErrorFromErrno( int err )
case EFBIG:
return TR_ERROR_IO_FILE_TOO_BIG;
default:
tr_dbg( "generic i/o errno from errno: %s", tr_strerror( errno ) );
tr_err( "generic i/o errno from errno: %s", tr_strerror( errno ) );
return TR_ERROR_IO_OTHER;
}
}