diff options
Diffstat (limited to 'src/volume.c')
-rw-r--r-- | src/volume.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/volume.c b/src/volume.c index d38a2c2c8..74c84a698 100644 --- a/src/volume.c +++ b/src/volume.c @@ -87,7 +87,7 @@ int prepOssMixer(char * device) { /* eliminate spaces at the end */ j = strlen(dup)-1; while(j>=0 && dup[j]==' ') dup[j--] = '\0'; - if(strcmp(dup,getConf()[CONF_MIXER_CONTROL])==0) { + if(strcasecmp(dup,getConf()[CONF_MIXER_CONTROL])==0) { free(dup); break; } @@ -203,7 +203,7 @@ int prepAlsaMixer(char * card) { if(snd_mixer_elem_get_type(elem) ==SND_MIXER_ELEM_SIMPLE) { - if(strcmp(getConf()[CONF_MIXER_CONTROL], + if(strcasecmp(getConf()[CONF_MIXER_CONTROL], snd_mixer_selem_get_name(elem)) ==0) { |