Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@apache.org Received: (qmail 61572 invoked from network); 15 Jul 2003 23:35:11 -0000 Received: from exchange.sun.com (192.18.33.10) by daedalus.apache.org with SMTP; 15 Jul 2003 23:35:11 -0000 Received: (qmail 21832 invoked by uid 97); 15 Jul 2003 23:37:46 -0000 Delivered-To: qmlist-jakarta-archive-commons-dev@nagoya.betaversion.org Received: (qmail 21824 invoked from network); 15 Jul 2003 23:37:45 -0000 Received: from daedalus.apache.org (HELO apache.org) (208.185.179.12) by nagoya.betaversion.org with SMTP; 15 Jul 2003 23:37:45 -0000 Received: (qmail 61289 invoked by uid 500); 15 Jul 2003 23:35:08 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 61275 invoked by uid 500); 15 Jul 2003 23:35:07 -0000 Received: (qmail 61271 invoked from network); 15 Jul 2003 23:35:07 -0000 Received: from icarus.apache.org (208.185.179.13) by daedalus.apache.org with SMTP; 15 Jul 2003 23:35:07 -0000 Received: (qmail 83867 invoked by uid 1675); 15 Jul 2003 23:35:06 -0000 Date: 15 Jul 2003 23:35:06 -0000 Message-ID: <20030715233506.83866.qmail@icarus.apache.org> From: adrian@apache.org To: jakarta-commons-cvs@apache.org Subject: cvs commit: jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/auth HttpAuthenticator.java X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org