mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
parent
39b24e4865
commit
11bd06e99c
@ -134,7 +134,7 @@ static BOOL check_user_equiv(char *user, char *remote, char *equiv_file)
|
||||
/****************************************************************************
|
||||
check for a possible hosts equiv or rhosts entry for the user
|
||||
****************************************************************************/
|
||||
BOOL check_hosts_equiv(char *user)
|
||||
static BOOL check_hosts_equiv(char *user)
|
||||
{
|
||||
char *fname = NULL;
|
||||
pstring rhostsfile;
|
||||
|
@ -134,7 +134,7 @@ static BOOL check_user_equiv(char *user, char *remote, char *equiv_file)
|
||||
/****************************************************************************
|
||||
check for a possible hosts equiv or rhosts entry for the user
|
||||
****************************************************************************/
|
||||
BOOL check_hosts_equiv(char *user)
|
||||
static BOOL check_hosts_equiv(char *user)
|
||||
{
|
||||
char *fname = NULL;
|
||||
pstring rhostsfile;
|
||||
|
@ -52,6 +52,12 @@
|
||||
extern int DEBUGLEVEL;
|
||||
extern struct passdb_ops pdb_ops;
|
||||
|
||||
static BOOL check_oem_password(char *user,
|
||||
uchar * lmdata, uchar * lmhash,
|
||||
uchar * ntdata, uchar * nthash,
|
||||
SAM_ACCOUNT **hnd, char *new_passwd,
|
||||
int new_passwd_size);
|
||||
|
||||
#if ALLOW_CHANGE_PASSWORD
|
||||
|
||||
static int findpty(char **slave)
|
||||
@ -704,11 +710,11 @@ BOOL pass_oem_change(char *user,
|
||||
but does use the lm OEM password to check the nt hashed-hash.
|
||||
|
||||
************************************************************/
|
||||
BOOL check_oem_password(char *user,
|
||||
uchar * lmdata, uchar * lmhash,
|
||||
uchar * ntdata, uchar * nthash,
|
||||
SAM_ACCOUNT **hnd, char *new_passwd,
|
||||
int new_passwd_size)
|
||||
static BOOL check_oem_password(char *user,
|
||||
uchar * lmdata, uchar * lmhash,
|
||||
uchar * ntdata, uchar * nthash,
|
||||
SAM_ACCOUNT **hnd, char *new_passwd,
|
||||
int new_passwd_size)
|
||||
{
|
||||
static uchar null_pw[16];
|
||||
static uchar null_ntpw[16];
|
||||
|
Loading…
Reference in New Issue
Block a user