From 15e8125026097be9f671f07c77696cc2638d531c Mon Sep 17 00:00:00 2001 From: Yoshi Huang Date: Thu, 8 Aug 2013 17:04:07 +0800 Subject: [PATCH] Bug 902769 - Part 1: Patch. r=vicamo --- dom/system/gonk/ril_worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dom/system/gonk/ril_worker.js b/dom/system/gonk/ril_worker.js index c1bc1ae3da24..007c594d233e 100644 --- a/dom/system/gonk/ril_worker.js +++ b/dom/system/gonk/ril_worker.js @@ -1292,7 +1292,7 @@ let RIL = { */ setICCFacilityLock: function setICCFacilityLock(options) { Buf.newParcel(REQUEST_SET_FACILITY_LOCK, options); - Buf.writeUint32(RILQUIRKS_V5_LEGACY ? 3 : 4); + Buf.writeUint32(RILQUIRKS_V5_LEGACY ? 4 : 5); Buf.writeString(options.facility); Buf.writeString(options.enabled ? "1" : "0"); Buf.writeString(options.password);