libbt-vendor: Add missing vendor prefix to a bluetooth.status prop
CAF forgot to add the prefix here.
Change-Id: Iac6b74edb411c5679256884b5adfe72f1a16c507
diff --git a/libbt-vendor/src/hardware.c b/libbt-vendor/src/hardware.c
index 3df76c4..50c260b 100644
--- a/libbt-vendor/src/hardware.c
+++ b/libbt-vendor/src/hardware.c
@@ -83,7 +83,7 @@
int readTrpState()
{
char szBtStatus[PROPERTY_VALUE_MAX] = {0, };
- if(property_get("bluetooth.status", szBtStatus, "") < 0){
+ if(property_get("vendor.bluetooth.status", szBtStatus, "") < 0){
ALOGE("Fail to get bluetooth status");
return FALSE;
}