mirror of
https://github.com/samba-team/samba.git
synced 2025-03-11 16:58:40 +03:00
hm. removed the "if failed to map nt name to unix name, fail tcon call"
restriction and "domain user map" seems to work. amazing. (This used to be commit 2c0d91e64a6b330b209ca62c3306ec1a53fda873)
This commit is contained in:
parent
2d6525f477
commit
308da9e82b
@ -263,10 +263,7 @@ int reply_tcon(connection_struct *conn,
|
||||
|
||||
parse_connect(smb_buf(inbuf)+1,service,user,password,&pwlen,dev);
|
||||
|
||||
if (!map_nt_and_unix_username(global_myworkgroup, user))
|
||||
{
|
||||
return(connection_error(inbuf,outbuf,ERRbadpw));
|
||||
}
|
||||
map_nt_and_unix_username(global_myworkgroup, user);
|
||||
|
||||
conn = make_connection(service,user,password,pwlen,dev,vuid,&ecode);
|
||||
|
||||
@ -336,10 +333,7 @@ int reply_tcon_and_X(connection_struct *conn, char *inbuf,char *outbuf,int lengt
|
||||
StrnCpy(devicename,path + strlen(path) + 1,6);
|
||||
DEBUG(4,("Got device type %s\n",devicename));
|
||||
|
||||
if (!map_nt_and_unix_username(global_myworkgroup, user))
|
||||
{
|
||||
return(connection_error(inbuf,outbuf,ERRbadpw));
|
||||
}
|
||||
map_nt_and_unix_username(global_myworkgroup, user);
|
||||
|
||||
conn = make_connection(service,user,password,passlen,devicename,vuid,&ecode);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user