Skip to content

Commit ef721a4

Browse files
Apply #2181 by @JimmyWang6 to 4.1 and 3.13 release series
1 parent 32774ad commit ef721a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/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");

versioned_docs/version-3.13/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)