From fa27b6dcce5d079eb136874cb55463d0d504d894 Mon Sep 17 00:00:00 2001
From: Robert Schmidt <robert.schmidt@eurecom.fr>
Date: Fri, 17 Aug 2018 11:10:14 +0200
Subject: [PATCH] Fix: Correct numbering of protobuf messages (as in RTC)

---
 openair2/ENB_APP/MESSAGES/V2/config_messages.proto | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/openair2/ENB_APP/MESSAGES/V2/config_messages.proto b/openair2/ENB_APP/MESSAGES/V2/config_messages.proto
index 0dd5140efa..1d5da8dd2a 100644
--- a/openair2/ENB_APP/MESSAGES/V2/config_messages.proto
+++ b/openair2/ENB_APP/MESSAGES/V2/config_messages.proto
@@ -50,10 +50,10 @@ message flex_cell_config {
 message flex_slice_config {
 	// whether remaining RBs after first intra-slice allocation will
 	// be allocated to UEs of the same slice
-	optional bool   intraslice_share_active = 4;
+	optional bool   intraslice_share_active = 3;
 	// whether remaining RBs after slice allocation will be allocated
 	// to UEs of another slice. Isolated slices will be ignored.
-	optional bool   interslice_share_active = 3;
+	optional bool   interslice_share_active = 4;
 	repeated flex_dl_slice dl = 1;
 	repeated flex_ul_slice ul = 2;
 }
-- 
2.26.2