Skip to content

Commit 36190f2

Browse files
jimmylukebakken
authored andcommitted
Fix typo in ssl example code
1 parent 7988d15 commit 36190f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

versioned_docs/version-4.0/ssl/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ public class Example2 {
838838
ks.load(new FileInputStream("/path/to/client_key.p12"), keyPassphrase);
839839

840840
KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
841-
kmf.init(ks, passphrase);
841+
kmf.init(ks, keyPassphrase);
842842

843843
char[] trustPassphrase = "rabbitstore".toCharArray();
844844
KeyStore tks = KeyStore.getInstance("JKS");

0 commit comments

Comments
 (0)