[Bug 336443] add missing comma in DigestAuthenticator string

This commit is contained in:
Jesse McConnell 2011-09-29 16:57:30 -05:00
parent 9b9bc9e79c
commit 53b9f1cc7e
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ public class DigestAuthenticator extends LoginAuthenticator
+ domain
+ "\", nonce=\""
+ newNonce((Request)request)
+ "\", algorithm=MD5, qop=\"auth\""
+ "\", algorithm=MD5, qop=\"auth\","
+ " stale=" + stale);
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);