summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-09-10 11:23:41 +0000
committerAndrew Tridgell <tridge@samba.org>2001-09-10 11:23:41 +0000
commitf0851202a852bed28fbd2446b44ce2b977ddacd8 (patch)
treeab8dcbd46502e870e4d02bde3132498860afdda4
parent954adb630d7c41a45de3a0d656d03499e20727b6 (diff)
downloadsamba-f0851202a852bed28fbd2446b44ce2b977ddacd8.tar.gz
samba-f0851202a852bed28fbd2446b44ce2b977ddacd8.tar.xz
samba-f0851202a852bed28fbd2446b44ce2b977ddacd8.zip
made a couple of local fns static
-rw-r--r--source/auth/auth_rhosts.c2
-rw-r--r--source/smbd/auth_rhosts.c2
-rw-r--r--source/smbd/chgpasswd.c16
3 files changed, 13 insertions, 7 deletions
diff --git a/source/auth/auth_rhosts.c b/source/auth/auth_rhosts.c
index ffb92122643..b447bed5d12 100644
--- a/source/auth/auth_rhosts.c
+++ b/source/auth/auth_rhosts.c
@@ -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;
diff --git a/source/smbd/auth_rhosts.c b/source/smbd/auth_rhosts.c
index ffb92122643..b447bed5d12 100644
--- a/source/smbd/auth_rhosts.c
+++ b/source/smbd/auth_rhosts.c
@@ -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;
diff --git a/source/smbd/chgpasswd.c b/source/smbd/chgpasswd.c
index 030c69bd4a7..8dff2f7d817 100644
--- a/source/smbd/chgpasswd.c
+++ b/source/smbd/chgpasswd.c
@@ -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];