allow an interval of up to 300

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/ec/trunk@39106 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2015-10-29 12:06:38 +00:00
parent 4ca4d42c6f
commit 29b0f887a3

View file

@ -1750,7 +1750,7 @@ static NSString *noFiles = @"No log files to archive";
- (void) setCmdInterval: (NSTimeInterval)interval
{
if (interval > 60.0)
if (interval > 300.0)
{
NSLog(@"Ignored attempt to set timer interval to %g ... using 60.0", interval);
interval = 60.0;