adrian 2003/07/15 16:35:06
Modified: httpclient/src/java/org/apache/commons/httpclient/auth
HttpAuthenticator.java
Log:
Minor chnage to debug message to include a space between the auth name and the end
of the sentence.
Revision Changes Path
1.9 +4 -4
jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/auth/HttpAuthenticator.java
Index: HttpAuthenticator.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/auth/HttpAuthenticator.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- HttpAuthenticator.java 13 Jul 2003 13:54:51 -0000 1.8
+++ HttpAuthenticator.java 15 Jul 2003 23:35:06 -0000 1.9
@@ -314,7 +314,7 @@
if (credentials == null) {
throw new AuthenticationException(
"No credentials available for the " + authscheme.getSchemeName()
- + "authentication realm '" + realm + "'");
+ + " authentication realm '" + realm + "'");
}
String auth = authscheme.authenticate(credentials, method.getName(),
method.getPath());
if (auth != null) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]