Typo error in code still exist in 2.0.4?

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.

Regards.

Sanath

Received on Tuesday, 7 March 2000 21:02:32 UTC