[Httpunit-commit] CVS: httpunit/src/com/meterware/httpunit WebClient.java,1.33,1.34
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-10-03 16:48:53
|
Update of /cvsroot/httpunit/httpunit/src/com/meterware/httpunit In directory usw-pr-cvs1:/tmp/cvs-serv17683/src/com/meterware/httpunit Modified Files: WebClient.java Log Message: from Geert Bevin: remove extraneous spaces in cookie header Index: WebClient.java =================================================================== RCS file: /cvsroot/httpunit/httpunit/src/com/meterware/httpunit/WebClient.java,v retrieving revision 1.33 retrieving revision 1.34 diff -u -r1.33 -r1.34 --- WebClient.java 3 Oct 2002 12:35:18 -0000 1.33 +++ WebClient.java 3 Oct 2002 16:48:49 -0000 1.34 @@ -363,7 +363,7 @@ StringBuffer sb = new StringBuffer(HttpUnitUtils.DEFAULT_BUFFER_SIZE); for (int i = 0; i < names.length; i++) { - if (i != 0) sb.append( "; " ); + if (i != 0) sb.append( ";" ); String name = names[i]; sb.append( name ).append( '=' ).append( getCookieValue( name ) ); } |