diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-20 22:05:31 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-20 22:05:31 +0000 |
commit | 387cc182e6a8a500fe4e0115b33230c6acca8084 (patch) | |
tree | 8d86d5840bffc746f48b568a850239b64892fbf3 /source3/smbd | |
parent | 27b8df4d9bc31fc73f7db6ceed24a6fca1271d3f (diff) | |
download | samba-387cc182e6a8a500fe4e0115b33230c6acca8084.tar.gz samba-387cc182e6a8a500fe4e0115b33230c6acca8084.tar.bz2 samba-387cc182e6a8a500fe4e0115b33230c6acca8084.zip |
oops, #ifdef'd cli_shutdown out, as the fun has _already_ started:
NT refuses to play nice, and establish a trust relationship.
(This used to be commit 98c42764fba365d612a8ae4b3172b03367066112)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/password.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c index b279e76f41..2f0ab6e137 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -1247,10 +1247,9 @@ BOOL domain_client_validate( char *user, char *domain, char *server_list, } #endif /* 0 */ -#if 0 cli_nt_session_close(&cli, nt_pipe_fnum); cli_ulogoff(&cli); cli_shutdown(&cli); -#endif + return True; } |