GGSN_Tests: Fix IPv4 PCODNS matching
diff --git a/ggsn_tests/GGSN_Tests.ttcn b/ggsn_tests/GGSN_Tests.ttcn
index ecc7d7a..358945a 100644
--- a/ggsn_tests/GGSN_Tests.ttcn
+++ b/ggsn_tests/GGSN_Tests.ttcn
@@ -387,7 +387,7 @@
 	}
 	template ProtConfigOptions tr_PCO_IPv6_DNS_resp(template OCT16 contents) modifies tr_PCO := {
 		protocols := {
-			{ protocolID := '0003'O, lengthProtoID := 16, protoIDContents := contents }
+			*, { protocolID := '0003'O, lengthProtoID := 16, protoIDContents := contents }, *
 		}
 	}
 
@@ -404,7 +404,7 @@
 	}
 	template ProtConfigOptions tr_PCO_IPv4_DNS_CONT_resp(template OCT4 contents) modifies tr_PCO := {
 		protocols := {
-			{ protocolID := '000d'O, lengthProtoID := 4, protoIDContents := contents }
+			*, { protocolID := '000d'O, lengthProtoID := 4, protoIDContents := contents }, *
 		}
 	}