<p>laforge <strong>submitted</strong> this change.</p><p><a href="https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/19905">View Change</a></p><div style="white-space:pre-wrap">Approvals:
  laforge: Looks good to me, approved
  pespin: Looks good to me, but someone else must approve
  Jenkins Builder: Verified

</div><pre style="font-family: monospace,monospace; white-space: pre-wrap;">library/Osmocom_Types: fix: '10111111'B is a valid emergency RA<br><br>Most likely, the second part of the condition was copy-pasted<br>from ra_is_ps(), where the specs. require that at least one<br>of the three LSB's shall be zero.  This requirement does not<br>apply to emergency RA values in range '101xxxxx'B.<br><br>Change-Id: I4c923682edfeee9c6bf3aeeeb67438809a54109f<br>---<br>M library/Osmocom_Types.ttcn<br>1 file changed, 1 insertion(+), 4 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/library/Osmocom_Types.ttcn b/library/Osmocom_Types.ttcn</span><br><span>index 2ee3215..fa36881 100644</span><br><span>--- a/library/Osmocom_Types.ttcn</span><br><span>+++ b/library/Osmocom_Types.ttcn</span><br><span>@@ -208,10 +208,7 @@</span><br><span> </span><br><span> function ra_is_emerg(OCT1 ra) return boolean {</span><br><span>    /* See also: 3GPP TS 04.08, Table 9.9, ra=101xxxxx */</span><br><span style="color: hsl(0, 100%, 40%);">-   if ((ra and4b 'E0'O == 'A0'O) and (ra and4b '1F'O != '1F'O)) {</span><br><span style="color: hsl(0, 100%, 40%);">-          return true;</span><br><span style="color: hsl(0, 100%, 40%);">-    }</span><br><span style="color: hsl(0, 100%, 40%);">-       return false;</span><br><span style="color: hsl(120, 100%, 40%);">+ return (ra and4b 'E0'O == 'A0'O);</span><br><span> }</span><br><span> </span><br><span> /* generate a random RACH for circuit-switched */</span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/19905">change 19905</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.osmocom.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/19905"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: osmo-ttcn3-hacks </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-Change-Id: I4c923682edfeee9c6bf3aeeeb67438809a54109f </div>
<div style="display:none"> Gerrit-Change-Number: 19905 </div>
<div style="display:none"> Gerrit-PatchSet: 2 </div>
<div style="display:none"> Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de> </div>
<div style="display:none"> Gerrit-Reviewer: Jenkins Builder </div>
<div style="display:none"> Gerrit-Reviewer: laforge <laforge@osmocom.org> </div>
<div style="display:none"> Gerrit-Reviewer: pespin <pespin@sysmocom.de> </div>
<div style="display:none"> Gerrit-MessageType: merged </div>