Skip to content

Commit

Permalink
correct minor typo (#3033)
Browse files Browse the repository at this point in the history
I noticed this small typo when looking at a PR, hope you don't mind!
  • Loading branch information
Ben9986 authored Dec 6, 2024
1 parent 900ffa8 commit eade671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.d
Original file line number Diff line number Diff line change
Expand Up @@ -1498,7 +1498,7 @@ void checkOpenSSLVersion() {
auto matches = versionString.match(versionRegex);
if (matches.empty) {
if (!versionString.empty) {
if (debugLogging) {addLogEntry("Unable to provided parse OpenSSL version: " ~ versionString, ["debug"]);}
if (debugLogging) {addLogEntry("Unable to parse provided OpenSSL version: " ~ versionString, ["debug"]);}
}
} else {
// Extract major, minor, patch, and optional letter parts
Expand Down

0 comments on commit eade671

Please sign in to comment.