Typo in getOutgoingSequenceNumber => successfull to successful

This commit is contained in:
Loic Blot 2015-03-31 09:18:11 +02:00
parent db32e6c5aa
commit 7c121726dc
1 changed files with 3 additions and 3 deletions

View File

@ -608,7 +608,7 @@ void Channel::setNextSplitSeqNum(u16 seqnum)
next_outgoing_split_seqnum = seqnum;
}
u16 Channel::getOutgoingSequenceNumber(bool& successfull)
u16 Channel::getOutgoingSequenceNumber(bool& successful)
{
JMutexAutoLock internal(m_internal_mutex);
u16 retval = next_outgoing_seqnum;
@ -628,7 +628,7 @@ u16 Channel::getOutgoingSequenceNumber(bool& successfull)
// know about difference of two unsigned may be negative in general
// but we already made sure it won't happen in this case
if (((u16)(next_outgoing_seqnum - lowest_unacked_seqnumber)) > window_size) {
successfull = false;
successful = false;
return 0;
}
}
@ -638,7 +638,7 @@ u16 Channel::getOutgoingSequenceNumber(bool& successfull)
// but we already made sure it won't happen in this case
if ((next_outgoing_seqnum + (u16)(SEQNUM_MAX - lowest_unacked_seqnumber)) >
window_size) {
successfull = false;
successful = false;
return 0;
}
}