Merge "BT: Wrong publishing result of bonding error code."

This commit is contained in:
Jaikumar Ganesh
2011-05-20 13:35:20 -07:00
committed by Android Code Review

2
core/java/android/server/BluetoothService.java Normal file → Executable file
View File

@@ -1351,7 +1351,7 @@ public class BluetoothService extends IBluetooth.Stub {
}
/*package*/ synchronized boolean setBondState(String address, int state, int reason) {
mBondState.setBondState(address.toUpperCase(), state);
mBondState.setBondState(address.toUpperCase(), state, reason);
return true;
}