mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed the 'Low disk space!' message
This commit is contained in:
parent
e841bc096f
commit
42c2dad611
@ -182,6 +182,7 @@ Lauri Pesonen <lauri.pesonen@firsthop.com>
|
|||||||
|
|
||||||
Sergei Haller <Sergei.Haller@math.uni-giessen.de>
|
Sergei Haller <Sergei.Haller@math.uni-giessen.de>
|
||||||
for fixing the LastActivity timestamp after a shutdown prompt
|
for fixing the LastActivity timestamp after a shutdown prompt
|
||||||
|
for fixing the "Low disk space!" message
|
||||||
|
|
||||||
Andreas Gebel <andreas@xcapenet.de>
|
Andreas Gebel <andreas@xcapenet.de>
|
||||||
for his help in keeping 'channels.conf' up to date
|
for his help in keeping 'channels.conf' up to date
|
||||||
|
1
HISTORY
1
HISTORY
@ -1002,3 +1002,4 @@ Video Disk Recorder Revision History
|
|||||||
- Added scanning for EPG data for another 4 days on channels that support this
|
- Added scanning for EPG data for another 4 days on channels that support this
|
||||||
(thanks to Oleg Assovski).
|
(thanks to Oleg Assovski).
|
||||||
- Removed '#define VFAT 1' from recording.c (was a leftover from testing).
|
- Removed '#define VFAT 1' from recording.c (was a leftover from testing).
|
||||||
|
- Fixed the "Low disk space!" message (thanks to Sergei Haller).
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* how to reach the author.
|
||||||
*
|
*
|
||||||
* $Id: recording.c 1.52 2002/02/15 22:09:44 kls Exp $
|
* $Id: recording.c 1.53 2002/02/15 22:22:58 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "recording.h"
|
#include "recording.h"
|
||||||
@ -122,7 +122,7 @@ void AssertFreeDiskSpace(int Priority)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Unable to free disk space, but there's nothing we can do about that...
|
// Unable to free disk space, but there's nothing we can do about that...
|
||||||
Interface->Confirm(tr("Low disk space"), 30);
|
Interface->Confirm(tr("Low disk space!"), 30);
|
||||||
}
|
}
|
||||||
LastFreeDiskCheck = time(NULL);
|
LastFreeDiskCheck = time(NULL);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user