Fix typo in MTU (1 to -1)

This commit is contained in:
Keith Winstein
2011-08-10 04:39:41 -04:00
parent e18152c1e2
commit f0f74a3971
+1 -1
View File
@@ -293,7 +293,7 @@ string Transport<MyState, RemoteState>::get_remote_diff( void )
{
/* find diff between last receiver state and current remote state, then rationalize states */
string ret( received_states.back().state.diff_from( last_receiver_state, 1 ) );
string ret( received_states.back().state.diff_from( last_receiver_state, -1 ) );
MyState * const oldest_receiver_state = &received_states.front().state;