Bug 1074037 - (follow-up) fix undefined variable name. r=edgar
--- a/dom/system/gonk/RadioInterfaceLayer.js
+++ b/dom/system/gonk/RadioInterfaceLayer.js
@@ -1151,17 +1151,17 @@ DataConnectionHandler.prototype = {
default:
return Ci.nsINetworkInterface.NETWORK_TYPE_UNKNOWN;
}
},
_compareDataCallOptions: function(dataCall, newDataCall) {
return dataCall.apnProfile.apn == newDataCall.apn &&
dataCall.apnProfile.user == newDataCall.user &&
- dataCall.apnProfile.password == newDataCall.password &&
+ dataCall.apnProfile.password == newDataCall.passwd &&
dataCall.chappap == newDataCall.chappap &&
dataCall.pdptype == newDataCall.pdptype;
},
_deliverDataCallMessage: function(name, args) {
for (let i = 0; i < this._dataCalls.length; i++) {
let datacall = this._dataCalls[i];
// Send message only to the DataCall that matches the data call options.