Skip to content

Commit 111af27

Browse files
Address review comments
1 parent f1a52ab commit 111af27

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

closed/src/java.base/share/native/libjncrypto/NativeCrypto.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -751,16 +751,16 @@ find_crypto_library(jboolean traceEnabled, const char *chomepath)
751751
/* Identify and load the latest version from the available libraries.
752752
* This logic depends upon the order in which libnames are defined.
753753
* It only loads the libraries which can possibly be the latest versions.
754-
* Once any library is loaded, everything after it will be a lower version
755-
* due to the order so we can stop.
754+
* Once any library is loaded, everything after it will probably be a
755+
* lower version due to the order so we can stop.
756756
*/
757757
tempVersion = get_crypto_library_version(traceEnabled, result, "\tLoaded OpenSSL version");
758758
if (tempVersion > 0) {
759759
return result;
760760
}
761761
}
762762

763-
/* If we reach here, it means that none of the libraries where found. */
763+
/* If we reach here, it means that none of the libraries were found. */
764764
return NULL;
765765
}
766766

0 commit comments

Comments
 (0)