From dfe494bf2b5e098cfdeb170c0c7571d95fab8072 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 1 Oct 2006 02:06:37 +0000 Subject: [PATCH] Replaced strncmp for SDL_AUDIODRIVER test with strcasecmp. Fixes Bugzilla #334. --- src/audio/SDL_audio.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/audio/SDL_audio.c b/src/audio/SDL_audio.c index c4a8543cd..20b9882ab 100644 --- a/src/audio/SDL_audio.c +++ b/src/audio/SDL_audio.c @@ -371,7 +371,7 @@ SDL_AudioInit(const char *driver_name) This probably isn't the place to do this, but... Shh! :) */ for (i = 0; bootstrap[i]; ++i) { - if (SDL_strcmp(bootstrap[i]->name, "esd") == 0) { + if (SDL_strcasecmp(bootstrap[i]->name, "esd") == 0) { #ifdef HAVE_PUTENV const char *esd_no_spawn; @@ -397,8 +397,7 @@ SDL_AudioInit(const char *driver_name) if (audio == NULL) { if (driver_name != NULL) { for (i = 0; bootstrap[i]; ++i) { - if (SDL_strncmp(bootstrap[i]->name, driver_name, - SDL_strlen(bootstrap[i]->name)) == 0) { + if (SDL_strcasecmp(bootstrap[i]->name, driver_name) == 0) { if (bootstrap[i]->available()) { audio = bootstrap[i]->create(idx); }