From c7951076394f3e91dcd793a30b7bda11fa081485 Mon Sep 17 00:00:00 2001 From: Dan Mihai Date: Tue, 14 Mar 2017 17:27:29 -0700 Subject: [PATCH] [IOT-1919] Fix pstat's map size Recent change d10c4a88ae458d3d067d74edf8287b08cee14857 removed the writeable deviceuuid (a.k.a. OIC_JSON_DEVICE_ID_NAME) property. Change-Id: Iee4ca533c29a77461603a97fadc7ad2207a40411 Signed-off-by: Dan Mihai Reviewed-on: https://gerrit.iotivity.org/gerrit/17925 Reviewed-by: Kevin Kane --- resource/csdk/security/src/pstatresource.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resource/csdk/security/src/pstatresource.c b/resource/csdk/security/src/pstatresource.c index 267cd14..204d3e5 100644 --- a/resource/csdk/security/src/pstatresource.c +++ b/resource/csdk/security/src/pstatresource.c @@ -46,7 +46,7 @@ static const uint16_t CBOR_MAX_SIZE = 4400; static const uint8_t PSTAT_MAP_SIZE = 6; // Number of writeable property -static const uint8_t WRITEABLE_PROPERTY_SIZE = 3; +static const uint8_t WRITEABLE_PROPERTY_SIZE = 2; static OicSecDpom_t gSm = SINGLE_SERVICE_CLIENT_DRIVEN; static OicSecPstat_t gDefaultPstat = -- 2.7.4