Skip to content

Commit

Permalink
fixed call to setTrustStorePassword
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Schorfheide committed Jun 7, 2012
1 parent 961491d commit 047629a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ring-jetty-adapter/src/ring/adapter/jetty.clj
Expand Up @@ -31,7 +31,7 @@
(when (options :truststore)
(.setTrustStore context (options :truststore)))
(when (options :trust-password)
(.setTrustPassword context (options :trust-password)))
(.setTrustStorePassword context (options :trust-password)))
(case (options :client-auth)
:need (.setNeedClientAuth context true)
:want (.setWantClientAuth context true)
Expand Down

0 comments on commit 047629a

Please sign in to comment.