After SR failure, allow for another attempt in SR state machine (presumably with a subsequent RACH happening in-between...)

svn path=/trunk/; revision=36109
This commit is contained in:
Martin Mathieson 2011-03-01 14:58:51 +00:00
parent 16bdcb2fbe
commit 3fac9089cb
1 changed files with 6 additions and 4 deletions

View File

@ -1942,11 +1942,13 @@ static void TrackSRInfo(SREvent event, packet_info *pinfo, proto_tree *tree _U_,
break;
case SR_Request:
/* Tried another SR after a failure, and presumbly no
successful subsequent RACH */
/* Tried another SR after previous one failed.
Presumably a subsequent RACH was tried in-between... */
state->status = SR_Outstanding;
result = GetSRResult(pinfo->fd->num, TRUE);
result->type = InvalidSREvent;
result->status = SR_Failed;
result->status = SR_Outstanding;
result->event = SR_Request;
break;