Commit e0fdbab1 authored by Grzegorz Kolodziejczyk's avatar Grzegorz Kolodziejczyk Committed by Marcel Holtmann

Bluetooth: bnep: Return err value while sending cmd is not understood

Send command not understood response should be verified if it was
successfully sent, like all send responses.
Signed-off-by: default avatarGrzegorz Kolodziejczyk <grzegorz.kolodziejczyk@tieto.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent e213568a
...@@ -239,7 +239,7 @@ static int bnep_rx_control(struct bnep_session *s, void *data, int len) ...@@ -239,7 +239,7 @@ static int bnep_rx_control(struct bnep_session *s, void *data, int len)
pkt[0] = BNEP_CONTROL; pkt[0] = BNEP_CONTROL;
pkt[1] = BNEP_CMD_NOT_UNDERSTOOD; pkt[1] = BNEP_CMD_NOT_UNDERSTOOD;
pkt[2] = cmd; pkt[2] = cmd;
bnep_send(s, pkt, sizeof(pkt)); err = bnep_send(s, pkt, sizeof(pkt));
} }
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment