[PATCH] wldap32: log in with the authentication name instead of the authorization name

Hans Leidekker hans at codeweavers.com
Fri Jan 29 03:26:56 CST 2021


On Wed, 2021-01-27 at 19:22 +0300, Dmitry Timoshkov wrote:
Damjan Jovanovic <damjan.jov at gmail.com> wrote:

> diff --git a/dlls/wldap32/bind.c b/dlls/wldap32/bind.c
> index 1498dc49fe6..d9132d99793 100644
> --- a/dlls/wldap32/bind.c
> +++ b/dlls/wldap32/bind.c
> @@ -198,7 +198,7 @@ static int sasl_interact( LDAP *ld, unsigned
> flags, void *defaults, void *intera
>              sasl->result = id->Domain;
>              sasl->len = id->DomainLength;
>          }
> -        else if (sasl->id == SASL_CB_USER)
> +        else if (sasl->id == SASL_CB_AUTHNAME)
>          {
>              sasl->result = id->User;
>              sasl->len = id->UserLength;

At the time I wrote this code I also tested it, and the callback was
called with SASL_CB_USER. Perhaps it depends on something else, I'd
suggest
to use both IDs to return user name instead of preferring one to
another.





More information about the wine-devel mailing list