mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-31 22:25:33 -04:00
protocol-native: Fix 'auth-group-enabled' modarg
This is actually implemented in module-protocol-stub as 'auth-group-enable'. An unfortunate typo because the other argument is spelt as 'enabled', but it's better to be slightly inconsistent than to change the public interface.
This commit is contained in:
parent
dc8edf4b43
commit
0bbe94f5db
1 changed files with 2 additions and 2 deletions
|
|
@ -5145,8 +5145,8 @@ int pa_native_options_parse(pa_native_options *o, pa_core *c, pa_modargs *ma) {
|
||||||
}
|
}
|
||||||
|
|
||||||
enabled = TRUE;
|
enabled = TRUE;
|
||||||
if (pa_modargs_get_value_boolean(ma, "auth-group-enabled", &enabled) < 0) {
|
if (pa_modargs_get_value_boolean(ma, "auth-group-enable", &enabled) < 0) {
|
||||||
pa_log("auth-group-enabled= expects a boolean argument.");
|
pa_log("auth-group-enable= expects a boolean argument.");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue