aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@espeweb.net>2021-02-05 12:41:58 +0100
committerPau Espin Pedrol <pespin@espeweb.net>2021-02-08 12:32:07 +0100
commit1b31ba46584b0e992ca3045ab8010db03c9ef007 (patch)
treeb59edae024564c3c64bf0237c61a2c3dab631729
parentdbc71270df0b92fbb5fc44cccd23119e842adcc4 (diff)
pcu: Fix inadequate restriction on the referenced template parameter
warning: Inadequate restriction on the referenced template parameter `imsi' Change-Id: Iecd19d8d397e427068e495577889e1247faa11e7
-rw-r--r--pcu/GPRS_Components.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcu/GPRS_Components.ttcn b/pcu/GPRS_Components.ttcn
index 3658fc86..830f8d3c 100644
--- a/pcu/GPRS_Components.ttcn
+++ b/pcu/GPRS_Components.ttcn
@@ -1153,7 +1153,7 @@ runs on MS_BTS_IFACE_CT return boolean {
}
/* Return true if a given Packet Paging Request contains the given IMSI, false otherwise */
-function f_pkt_paging_match_imsi(in PacketPagingReq req, template hexstring imsi,
+function f_pkt_paging_match_imsi(in PacketPagingReq req, template (present) hexstring imsi,
boolean cs_domain := true, boolean ps_domain := true)
runs on MS_BTS_IFACE_CT return boolean {
if (not ispresent(req.repeated_pageinfo)) {