--- a/src/internet/model/tcp-newreno.cc Sun May 22 23:17:41 2011 -0700
+++ b/src/internet/model/tcp-newreno.cc Sun May 22 23:18:47 2011 -0700
@@ -113,7 +113,7 @@
{ // Partial ACK, partial window deflation (RFC2582 sec.3 bullet #5 paragraph 3)
m_cWnd += m_segmentSize; // increase cwnd
NS_LOG_INFO ("Partial ACK in fast recovery: cwnd set to " << m_cWnd);
- TcpSocketBase::NewAck(seq); // update m_nextTxSequence and send new data if allowed by window
+ TcpSocketBase::NewAck (seq); // update m_nextTxSequence and send new data if allowed by window
DoRetransmit (); // Assume the next seq is lost. Retransmit lost packet
return;
}