diff options
author | Simo Sorce <idra@samba.org> | 2002-06-14 16:02:59 +0000 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2002-06-14 16:02:59 +0000 |
commit | e69fba09846f9bfd1564c4c684bb5d4fc059b02d (patch) | |
tree | 310c7e9a06c443aadb560a62f60809784db48218 /source3/smbd/service.c | |
parent | a98d2b1e1788d3207278340330052fc09245e8d2 (diff) | |
download | samba-e69fba09846f9bfd1564c4c684bb5d4fc059b02d.tar.gz samba-e69fba09846f9bfd1564c4c684bb5d4fc059b02d.tar.bz2 samba-e69fba09846f9bfd1564c4c684bb5d4fc059b02d.zip |
moved lp_list_* functions away from param/loadparm.c, put int lib/util_str.c
and renamed to str_list_* as it is a better name.
Elrond should be satisfied now :)
(This used to be commit 4ae260adb9505384fcccfb4c9929cb60a45f2e84)
Diffstat (limited to 'source3/smbd/service.c')
-rw-r--r-- | source3/smbd/service.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 32ceb63154..af70e7839e 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -266,24 +266,24 @@ static void set_read_only(connection_struct *conn) if (!service) return; - lp_list_copy(&list, lp_readlist(conn->service)); + str_list_copy(&list, lp_readlist(conn->service)); if (list) { - if (!lp_list_substitute(list, "%S", service)) { + if (!str_list_substitute(list, "%S", service)) { DEBUG(0, ("ERROR: read list substitution failed\n")); } if (user_in_list(conn->user, list)) conn->read_only = True; - lp_list_free(&list); + str_list_free(&list); } - lp_list_copy(&list, lp_writelist(conn->service)); + str_list_copy(&list, lp_writelist(conn->service)); if (list) { - if (!lp_list_substitute(list, "%S", service)) { + if (!str_list_substitute(list, "%S", service)) { DEBUG(0, ("ERROR: write list substitution failed\n")); } if (user_in_list(conn->user, list)) conn->read_only = False; - lp_list_free(&list); + str_list_free(&list); } } |