diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-10 14:48:33 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-10 14:48:33 +0000 |
commit | 43a3faab0831a866559ca56e70c81be582047d0b (patch) | |
tree | 260d1729096068494759dce1743d44da61499671 /source3/smbd/service.c | |
parent | 1c0cfff309be9360fa55ca2c72f6efd093f5a062 (diff) | |
download | samba-43a3faab0831a866559ca56e70c81be582047d0b.tar.gz samba-43a3faab0831a866559ca56e70c81be582047d0b.tar.xz samba-43a3faab0831a866559ca56e70c81be582047d0b.zip |
- changed smb_getpwnam() to use winbind style usernames
- finished ntdom -> winbind rename in head
(This used to be commit ada483cb56453afc6df4ec4be18bfe5e943c7150)
Diffstat (limited to 'source3/smbd/service.c')
-rw-r--r-- | source3/smbd/service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 71d718154d1..f713b185623 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -295,7 +295,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int } /* find out some info about the user */ - pass = smb_getpwnam(user,validated_domain(vuid),True); + pass = smb_getpwnam(user,True); if (pass == NULL) { DEBUG(0,( "Couldn't find account %s\n",user)); |