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

* commit '198ed3e46af4bd51fa6be0186bacdde9e832ba94':
  BT: Wrong publishing result of bonding error code.
This commit is contained in:
Jaikumar Ganesh
2011-05-20 14:21:23 -07:00
committed by Android Git Automerger

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;
}