Re: Typo error in code still exist in 2.0.4?

On Tue, 7 Mar 2000, Sanath Jayasena wrote:

> Sometime ago it was pointed out that the following was a typo,
> in 2.0.3 source ../jigsaw/http/socket/SocketClientFactory.java:
> 
> public ServerSocket createServerSocket() 	throws IOException    
> {	// using maxCLient in the backlog is safe, but an overkill :)	
>   if (bindAddr != null) {
>      return new ServerSocket (server.getPort(), maxClients);	} 
>   else {
>      return new ServerSocket (server.getPort(),Math.max(128, maxClients),
> 				     bindAddr);	}    
> }
> 
> And it was then told the typo is corrected to:
>   if (bindAddr == null)
> 
> THE TYPO IS STILL THERE in 2.0.4 ! I downloaded it a few minutes ago.

Get the latest version from Cvs, if has been fixed shortly after. You can
also get any recent devel release from
http://jigsaw.w3.org/Devel/classes-2.0/

      /\          - Yves Lafon - World Wide Web Consortium - 
  /\ /  \        Architecture Domain - Jigsaw Activity Leader
 /  \    \/\    
/    \   /  \   http://www.w3.org/People/Lafon - ylafon@w3.org    

Received on Wednesday, 8 March 2000 04:55:24 UTC