mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
Increased limit on the size of torrent files
This commit is contained in:
parent
e91bf288c5
commit
67eaa8809b
1 changed files with 3 additions and 1 deletions
|
@ -24,6 +24,8 @@
|
||||||
|
|
||||||
#include "transmission.h"
|
#include "transmission.h"
|
||||||
|
|
||||||
|
#define TORRENT_MAX_SIZE (5*1024*1024)
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* Local prototypes
|
* Local prototypes
|
||||||
**********************************************************************/
|
**********************************************************************/
|
||||||
|
@ -65,7 +67,7 @@ int tr_metainfoParse( tr_info_t * inf, const char * path,
|
||||||
fprintf( stderr, "Not a regular file (%s)\n", path );
|
fprintf( stderr, "Not a regular file (%s)\n", path );
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if( sb.st_size > 2097152 )
|
if( sb.st_size > TORRENT_MAX_SIZE )
|
||||||
{
|
{
|
||||||
tr_err( "Torrent file is too big (%d bytes)", sb.st_size );
|
tr_err( "Torrent file is too big (%d bytes)", sb.st_size );
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in a new issue