Skip to content

Commit

Permalink
Modify JNADominoClient to use ALLOW_AMBIGUOUS_NAMES
Browse files Browse the repository at this point in the history
  • Loading branch information
jesse-gallagher committed Sep 30, 2024
1 parent cf1eb12 commit 21121b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ public String validateCredentials(String serverName, String userName, String pas
Memory variablePasswordMem = NotesStringUtils.toLMBCS(password, true);
try(DisposableMemory rethValueBuffer = new DisposableMemory(NotesConstants.MAXUSERNAME)) {
short result = capi1201.NABLookupBasicAuthentication(variableUserNameMem,
variablePasswordMem, NotesConstants.BASIC_AUTH_NO_AMBIGUOUS_NAMES,
variablePasswordMem, NotesConstants.BASIC_AUTH_ALLOW_AMBIGUOUS_NAMES,
NotesConstants.MAXUSERNAME,
rethValueBuffer);
if (result == 1) {
Expand Down

0 comments on commit 21121b7

Please sign in to comment.