Skip to content

Commit

Permalink
KAFKA-15500: Fix condition in SslPrincipalMapper.java (apache#14441)
Browse files Browse the repository at this point in the history
Reviewers: Mickael Maison <[email protected]>, Divij Vaidya <[email protected]>
  • Loading branch information
rykovsi authored Sep 29, 2023
1 parent 4ba9cfd commit 03259f6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ String apply(String distinguishedName) {

if (toLowerCase && result != null) {
result = result.toLowerCase(Locale.ENGLISH);
} else if (toUpperCase & result != null) {
} else if (toUpperCase && result != null) {
result = result.toUpperCase(Locale.ENGLISH);
}

Expand Down

0 comments on commit 03259f6

Please sign in to comment.