summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2019-03-17 16:15:51 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2019-03-17 16:15:51 +0100
commit4bd6d6559ff530f6fc39d4e60ed4f259f401e0ac (patch)
tree66672bdcce7d6697ebc6d7b43d560db8c3ac974b
parent4b3fec660a5a8da7f52a0779e0b883de6d787287 (diff)
downloadvdr-4bd6d6559ff530f6fc39d4e60ed4f259f401e0ac.tar.gz
vdr-4bd6d6559ff530f6fc39d4e60ed4f259f401e0ac.tar.bz2
Fixed sorting recordings alphabetically
-rw-r--r--HISTORY3
-rw-r--r--recording.c6
2 files changed, 5 insertions, 4 deletions
diff --git a/HISTORY b/HISTORY
index 21315b2c..584c5e2e 100644
--- a/HISTORY
+++ b/HISTORY
@@ -9348,7 +9348,7 @@ Video Disk Recorder Revision History
Senzel).
- Official release.
-2019-03-15: Version 2.4.1
+2019-03-17: Version 2.4.1
- Fixed handling the tfRecording flag in the SVDRP commands MODT and UPDT (reported
by Johann Friedrichs).
@@ -9385,3 +9385,4 @@ Video Disk Recorder Revision History
are not currently broadcasting.
- Fixed processing SI::T2DeliverySystemDescriptor when typecasting it over an
SI::ExtensionDescriptor (reported by Helmut Binder).
+- Fixed sorting recordings alphabetically.
diff --git a/recording.c b/recording.c
index 0cf265cb..63f6a860 100644
--- a/recording.c
+++ b/recording.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: recording.c 4.22 2018/03/17 10:56:13 kls Exp $
+ * $Id: recording.c 4.23 2019/03/17 16:01:13 kls Exp $
*/
#include "recording.h"
@@ -1022,9 +1022,9 @@ int cRecording::Compare(const cListObject &ListObject) const
{
cRecording *r = (cRecording *)&ListObject;
if (Setup.RecSortingDirection == rsdAscending)
- return strcasecmp(SortName(), r->SortName());
+ return strcmp(SortName(), r->SortName());
else
- return strcasecmp(r->SortName(), SortName());
+ return strcmp(r->SortName(), SortName());
}
bool cRecording::IsInPath(const char *Path) const