From d2676cdd0b44fc4fc825118e510bac2c3f1e40d9 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 5 May 1996 11:25:07 +0000 Subject: turn on KEEP_PASSWORD_SERVER_OPEN by default --- source/smbd/password.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/smbd/password.c') diff --git a/source/smbd/password.c b/source/smbd/password.c index 863032df872..fcfe1b4a2ce 100644 --- a/source/smbd/password.c +++ b/source/smbd/password.c @@ -1241,7 +1241,7 @@ BOOL check_hosts_equiv(char *user) } -static int password_client = -1; +int password_client = -1; static fstring pserver; /**************************************************************************** @@ -1405,7 +1405,7 @@ BOOL server_validate(char *buf) DEBUG(3,("password server %s accepted the password\n",pserver)); -#ifndef KEEP_PASSWORD_SERVER_OPEN +#if !KEEP_PASSWORD_SERVER_OPEN close(password_client); password_client= -1; #endif -- cgit