context binding bugfix

Signed-off-by: eantwuh <antal.wu-hen-chang@ericsson.com>
diff --git a/src/EPTF_LwM2M_LGen_Functions.ttcn b/src/EPTF_LwM2M_LGen_Functions.ttcn
index 0ef7aec..54919e2 100644
--- a/src/EPTF_LwM2M_LGen_Functions.ttcn
+++ b/src/EPTF_LwM2M_LGen_Functions.ttcn
@@ -69,12 +69,13 @@
     f_EPTF_oct2int_HashMap_Init();
 
     v_LwM2M_bIdx := f_EPTF_LGenBase_declareBehaviorType(
-      c_LwM2M_behaviorType, 
-      tsp_EPTF_LwM2M_LGen_maxBindableCtx, 
-      refers(f_LwM2M_eCtxReset), 
-      refers(f_LwM2M_eCtxBind), 
-      refers(f_LwM2M_eCtxUnbind)
-      );  
+      pl_name := c_LwM2M_behaviorType,
+      pl_maxCount := tsp_EPTF_LwM2M_LGen_maxBindableCtx,
+      pl_resetFn := refers(f_LwM2M_eCtxReset),
+      pl_bindFn := null,
+      pl_unbindFn := refers(f_LwM2M_eCtxUnbind),
+      pl_bindWithAbsIdxFn := refers(f_LwM2M_eCtxBind)
+    );  
 
     f_EPTF_LwM2M_LGen_initLogging();