diff options
author | Gerald Carter <jerry@samba.org> | 2003-09-05 05:32:32 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-09-05 05:32:32 +0000 |
commit | 5a74bdd7aaf644fc3de94b26d3c85e088211067a (patch) | |
tree | adbcd4afde32ac9eae87a9e4714ecbd0e69dfa55 /source3/smbd | |
parent | 4fd8542cf5ed48473ee8360b811835b3a794e882 (diff) | |
download | samba-5a74bdd7aaf644fc3de94b26d3c85e088211067a.tar.gz samba-5a74bdd7aaf644fc3de94b26d3c85e088211067a.tar.bz2 samba-5a74bdd7aaf644fc3de94b26d3c85e088211067a.zip |
fix bug 397: use a variant of alloc_sub_basic() for string lists.
(This used to be commit 62d5611df0cf86c267d7fe820822d4d019ae28bd)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/password.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/smbd/password.c b/source3/smbd/password.c index b988f2ec74..32c24b3d67 100644 --- a/source3/smbd/password.c +++ b/source3/smbd/password.c @@ -28,6 +28,9 @@ static user_struct *validated_users; static int next_vuid = VUID_OFFSET; static int num_validated_vuids; +extern userdom_struct current_user_info; + + /**************************************************************************** Check if a uid has been validated, and return an pointer to the user_struct if it has. NULL if not. vuid is biased by an offset. This allows us to @@ -296,7 +299,7 @@ BOOL user_ok(const char *user,int snum, gid_t *groups, size_t n_groups) if (ret && lp_valid_users(snum)) { str_list_copy(&valid, lp_valid_users(snum)); - if (valid && str_list_substitute(valid, "%S", lp_servicename(snum))) { + if ( valid && str_list_sub_basic(valid, current_user_info.smb_name) ) { ret = user_in_list(user, (const char **)valid, groups, n_groups); } } |