Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse McConnell2011-09-29 21:57:30 +0000
committerJesse McConnell2011-09-29 21:57:30 +0000
commit53b9f1cc7e4275e17aa579f46ca20cc4211dced4 (patch)
treef5ae823b85f37edeb08272799a350c96f03f93ee /jetty-security/src
parent9b9bc9e79cc030e8cde8b6509181761510865eb6 (diff)
downloadorg.eclipse.jetty.project-53b9f1cc7e4275e17aa579f46ca20cc4211dced4.tar.gz
org.eclipse.jetty.project-53b9f1cc7e4275e17aa579f46ca20cc4211dced4.tar.xz
org.eclipse.jetty.project-53b9f1cc7e4275e17aa579f46ca20cc4211dced4.zip
[Bug 336443] add missing comma in DigestAuthenticator string
Diffstat (limited to 'jetty-security/src')
-rw-r--r--jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DigestAuthenticator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DigestAuthenticator.java b/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DigestAuthenticator.java
index ac4ebe2ea3..5a2ecf412e 100644
--- a/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DigestAuthenticator.java
+++ b/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/DigestAuthenticator.java
@@ -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);

Back to the top