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/passdb | |
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/passdb')
-rw-r--r-- | source3/passdb/pdb_interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/passdb/pdb_interface.c b/source3/passdb/pdb_interface.c index da013f6851..3b0f54b2b3 100644 --- a/source3/passdb/pdb_interface.c +++ b/source3/passdb/pdb_interface.c @@ -353,9 +353,9 @@ NTSTATUS make_pdb_context_list(struct pdb_context **context, char **selected) NTSTATUS make_pdb_context_string(struct pdb_context **context, const char *selected) { NTSTATUS ret; - char **newsel = lp_list_make(selected); + char **newsel = str_list_make(selected); ret = make_pdb_context_list(context, newsel); - lp_list_free(&newsel); + str_list_free(&newsel); return ret; } |