[alsa-devel] [PATCH 1/2] amixer: Make "dB" case-insensitive in set commands

Takashi Iwai tiwai at suse.de
Sun Nov 23 10:16:01 CET 2014


We don't have to be necessarily too strict about case-sensitivity of
"dB" suffix used in set commands.

Signed-off-by: Takashi Iwai <tiwai at suse.de>
---
 amixer/amixer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/amixer/amixer.c b/amixer/amixer.c
index cf82892bfa2f..6a2fdb96c62f 100644
--- a/amixer/amixer.c
+++ b/amixer/amixer.c
@@ -346,7 +346,7 @@ static int set_volume_simple(snd_mixer_elem_t *elem,
 	if (*p == '%') {
 		percent = 1;
 		p++;
-	} else if (p[0] == 'd' && p[1] == 'B') {
+	} else if (toupper(p[0]) == 'D' && toupper(p[1]) == 'B') {
 		vol_type = VOL_DB;
 		p += 2;
 		scale = 100;
-- 
2.1.3



More information about the Alsa-devel mailing list