mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 08:51:10 +02:00
- screensaver: use strcasecmp instead of strcmp
This commit is contained in:
@@ -156,7 +156,6 @@ bool CScreenSaver::ReadDir()
|
|||||||
DIR *dir;
|
DIR *dir;
|
||||||
char curr_ext[5];
|
char curr_ext[5];
|
||||||
int curr_lenght;
|
int curr_lenght;
|
||||||
char *p;
|
|
||||||
bool ret = false;
|
bool ret = false;
|
||||||
|
|
||||||
v_bg_files.clear();
|
v_bg_files.clear();
|
||||||
@@ -177,10 +176,8 @@ bool CScreenSaver::ReadDir()
|
|||||||
{
|
{
|
||||||
strncpy(curr_ext,(*dirpointer).d_name+(curr_lenght-4),5);
|
strncpy(curr_ext,(*dirpointer).d_name+(curr_lenght-4),5);
|
||||||
|
|
||||||
for (p = curr_ext; *p; ++p)
|
|
||||||
*p = (char)tolower(*p);
|
|
||||||
//printf("%s\n",curr_ext);
|
//printf("%s\n",curr_ext);
|
||||||
if (strcmp(".jpg",curr_ext) && strcmp(".png",curr_ext))
|
if (strcasecmp(".jpg",curr_ext) && strcasecmp(".png",curr_ext))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
str += "/";
|
str += "/";
|
||||||
|
Reference in New Issue
Block a user