diff options
| author | Garming Sam <garming@catalyst.net.nz> | 2014-02-04 15:09:11 +1300 |
|---|---|---|
| committer | Jeremy Allison <jra@samba.org> | 2014-02-07 16:19:16 -0800 |
| commit | e3052c5bd94de2ae282c124685f17f5632e14b29 (patch) | |
| tree | 5549e0f7f57086f39e60394b635295441918c29b /source3/smbd | |
| parent | 7cdcf131e8da6d750d103ded2fee009fe84d07fb (diff) | |
| download | samba-e3052c5bd94de2ae282c124685f17f5632e14b29.tar.gz samba-e3052c5bd94de2ae282c124685f17f5632e14b29.tar.xz samba-e3052c5bd94de2ae282c124685f17f5632e14b29.zip | |
param: rename lp function and variable from "writelist" to "write_list"
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/smbd')
| -rw-r--r-- | source3/smbd/share_access.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/share_access.c b/source3/smbd/share_access.c index dbe4c5b5d0..8b165e6c86 100644 --- a/source3/smbd/share_access.c +++ b/source3/smbd/share_access.c @@ -270,11 +270,11 @@ bool is_share_read_only_for_token(const char *username, } } - if (lp_writelist(snum) != NULL) { + if (lp_write_list(snum) != NULL) { if (token_contains_name_in_list(username, domain, lp_servicename(talloc_tos(), snum), token, - lp_writelist(snum))) { + lp_write_list(snum))) { result = False; } } |
