Correct sense of comparison on MTU cap

This commit is contained in:
Keith Winstein
2012-01-07 04:29:15 -05:00
parent 831b6dde3c
commit ba6da2f96e
+1 -1
View File
@@ -340,5 +340,5 @@ void Connection::update_MTU( void )
throw NetworkException( "Error getting path MTU", errno );
}
MTU = max( PMTU, SEND_MTU );
MTU = min( PMTU, SEND_MTU );
}