Skip to content
Snippets Groups Projects
Commit 8761dbe1 authored by Thomas Guillem's avatar Thomas Guillem
Browse files

Revert "smb2: fix anonymous login"

This reverts commit 205963ad.

According to git blame on libsmb2, anonymous login was always enabled
with a NULL password.

I don't know what happened when I tested this reverted commit, I may
have mix up VLC or/and smb/smb2/dsm builds.

For future reference, see libsmb2/lib/ntlmssp.c:
...
encode_ntlm_auth(...)
{
...
    if (auth_data->password == NULL) {
            anonymous = 1;
            goto encode;
    }
...
}

Fixes #27113
parent 1584eaa5
No related branches found
Tags 1.6.0
Loading
Pipeline #243265 passed with stages
in 22 minutes and 4 seconds
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment