summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2019-04-08 12:41:39 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2019-04-08 15:25:00 +0300
commit9f7659a44601e043bdb6724b0ab4f3f59c46e9fe (patch)
tree1a69244409e08ba3044dfcc63413e5f13d765602 /profiles
parent65988b31766ea520986f306be7a3f00f7dd97dfa (diff)
downloadbluez-9f7659a44601e043bdb6724b0ab4f3f59c46e9fe.tar.gz
a2dp: Fix UUID of remote Sinks
Sinks were being reported as Sources.
Diffstat (limited to 'profiles')
-rw-r--r--profiles/audio/a2dp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/profiles/audio/a2dp.c b/profiles/audio/a2dp.c
index 4001ea0ea..8f141739c 100644
--- a/profiles/audio/a2dp.c
+++ b/profiles/audio/a2dp.c
@@ -1686,7 +1686,7 @@ static gboolean get_uuid(const GDBusPropertyTable *property,
uuid = A2DP_SOURCE_UUID;
break;
case AVDTP_SEP_TYPE_SINK:
- uuid = A2DP_SOURCE_UUID;
+ uuid = A2DP_SINK_UUID;
break;
default:
uuid = "";