diff options
author | Thierry Bultel <thierry.bultel@iot.bzh> | 2018-11-08 13:59:50 +0100 |
---|---|---|
committer | Thierry Bultel <thierry.bultel@iot.bzh> | 2018-11-08 13:59:50 +0100 |
commit | a17d5239d2e72daa25a07a761fcece345701c7ff (patch) | |
tree | 363ea7f8934b3e2c1ceb1b8a7f3c4a66c49f450f /plugins/alsa/alsa-api-zones.c | |
parent | 92e0380860dbc556ef2a1f9fbc0cd7eb99edad69 (diff) |
Fix the error string of attach actions
Fixes the "syntax-error" to something more explicit
(SPEC-1906)
Change-Id: I9d4c81ee1d62dcfb99799480c6dc910e2019a791
Signed-off-by: Thierry Bultel <thierry.bultel@iot.bzh>
Diffstat (limited to 'plugins/alsa/alsa-api-zones.c')
-rw-r--r-- | plugins/alsa/alsa-api-zones.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/alsa/alsa-api-zones.c b/plugins/alsa/alsa-api-zones.c index 4ae3402..c8ab107 100644 --- a/plugins/alsa/alsa-api-zones.c +++ b/plugins/alsa/alsa-api-zones.c @@ -146,7 +146,7 @@ PUBLIC int ApiZoneAttach(SoftMixerT *mixer, AFB_ReqT request, const char *uid, j case json_type_object: { AlsaSndZoneT * zone = AttacheOneZone(mixer, uid, argsJ); if (!zone) { - AFB_ReqFailF(request, "invalid-syntax", "mixer=%s invalid zone= %s", mixer->uid, json_object_get_string(argsJ)); + AFB_ReqFailF(request, "bad-zone", "mixer=%s invalid zone= %s", mixer->uid, json_object_get_string(argsJ)); goto OnErrorExit; } @@ -172,7 +172,7 @@ PUBLIC int ApiZoneAttach(SoftMixerT *mixer, AFB_ReqT request, const char *uid, j json_object *zoneJ = json_object_array_get_idx(argsJ, idx); AlsaSndZoneT * zone = AttacheOneZone(mixer, uid, zoneJ); if (!zone) { - AFB_ReqFailF(request, "invalid-syntax", "mixer=%s invalid zone= %s", mixer->uid, json_object_get_string(zoneJ)); + AFB_ReqFailF(request, "bad-zone", "mixer=%s invalid zone= %s", mixer->uid, json_object_get_string(zoneJ)); goto OnErrorExit; } |