This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch crypto-174
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git
The following commit(s) were added to refs/heads/crypto-174 by this push:
new 2635f00c Windows needs lib prefix for JNI [skip ci]
2635f00c is described below
commit 2635f00c56470ba08ae8d1435ef9bcbb24df6ec6
Author: Sebb <[email protected]>
AuthorDate: Mon Nov 6 22:54:12 2023 +0000
Windows needs lib prefix for JNI [skip ci]
---
src/main/java/org/apache/commons/crypto/utils/Utils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/crypto/utils/Utils.java
b/src/main/java/org/apache/commons/crypto/utils/Utils.java
index 6160d64a..e46c3a19 100644
--- a/src/main/java/org/apache/commons/crypto/utils/Utils.java
+++ b/src/main/java/org/apache/commons/crypto/utils/Utils.java
@@ -203,7 +203,7 @@ public final class Utils {
* On both macOS and Linux, different versions of the library are stored
in different directories.
* In each case, there is a link from the canonical name (libcrypto.xx) to
the versioned name (libcrypto-1.2.3.xx)
* However on Windows, all the DLL versions seem to be stored in the same
directory.
- * This means that Windows code needs to be given the versioned name (e.g.
crypto-1_1-x64)
+ * This means that Windows code needs to be given the versioned name (e.g.
libcrypto-1_1-x64)
* This is done by defining jni.library.name.
*
* Do not change the method name or its signature!