forked from pool/alsa-utils
30 lines
854 B
Diff
30 lines
854 B
Diff
|
From 45a334e71ca9b4402fb731a934f7455cec5b0121 Mon Sep 17 00:00:00 2001
|
||
|
From: Takashi Iwai <tiwai@suse.de>
|
||
|
Date: Sun, 23 Nov 2014 09:40:07 +0100
|
||
|
Subject: [PATCH 14/15] amixer: Make "dB" case-insensitive in set commands
|
||
|
|
||
|
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@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.2.0
|
||
|
|