From ad47940901782b1e54c14b416adbcc1a9d50092b Mon Sep 17 00:00:00 2001 From: "hyuna0213.jo" Date: Mon, 14 Sep 2015 17:20:25 +0900 Subject: [PATCH] modify the OCTransportAdapter structure in RI currently if RA and TCP are together used, there is a compile issue. so I fixed the issue to build iotivity. Change-Id: I844deb28afc1556d7faa9c33ac4062550d9e223c Signed-off-by: hyuna0213.jo Reviewed-on: https://gerrit.iotivity.org/gerrit/2507 Tested-by: jenkins-iotivity Reviewed-by: Patrick Lankswert --- resource/csdk/stack/include/octypes.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resource/csdk/stack/include/octypes.h b/resource/csdk/stack/include/octypes.h index 4c702be..22ce6b1 100644 --- a/resource/csdk/stack/include/octypes.h +++ b/resource/csdk/stack/include/octypes.h @@ -293,12 +293,12 @@ typedef enum #ifdef RA_ADAPTER /**Remote Access over XMPP.*/ - OC_ADAPTER_REMOTE_ACCESS = (1 << 3) + OC_ADAPTER_REMOTE_ACCESS = (1 << 3), #endif #ifdef TCP_ADAPTER /** CoAP over TCP.*/ - OC_ADAPTER_TCP = (1 << 4) + OC_ADAPTER_TCP = (1 << 4) #endif } OCTransportAdapter; -- 2.7.4