direct_phy: Fix condition dropping rx DATA.ind payload in in

Related: OS#5020
Fixes: 81c549d5be1f5e161d6231d3f2e5fb4aa3b0557c
Change-Id: Iad8e50b856009439d78c596c5b54dc3e9836e1d4
diff --git a/src/osmo-bts-oc2g/oc2g_l1_if.c b/src/osmo-bts-oc2g/oc2g_l1_if.c
index 101bd56..a41e7af 100644
--- a/src/osmo-bts-oc2g/oc2g_l1_if.c
+++ b/src/osmo-bts-oc2g/oc2g_l1_if.c
@@ -222,7 +222,7 @@
 	case GsmL1_Sapi_Pacch:
 		/* PDTCH / PACCH frame handling */
 		if (data_ind->msgUnitParam.u8Size != 0 &&
-		    data_ind->msgUnitParam.u8Buffer[0] != GsmL1_PdtchPlType_Full) {
+		    data_ind->msgUnitParam.u8Buffer[0] == GsmL1_PdtchPlType_Full) {
 			data = data_ind->msgUnitParam.u8Buffer + 1;
 			data_len = data_ind->msgUnitParam.u8Size - 1;
 			if (data_len == 0)