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/web | |
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/web')
-rw-r--r-- | source3/web/swat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/web/swat.c b/source3/web/swat.c index 955cbb0748..ad91033f4c 100644 --- a/source3/web/swat.c +++ b/source3/web/swat.c @@ -329,7 +329,7 @@ static void show_parameters(int snum, int allparameters, int advanced, int print break; case P_LIST: - if (!lp_list_compare(*(char ***)ptr, (char **)(parm->def.lvalue))) continue; + if (!str_list_compare(*(char ***)ptr, (char **)(parm->def.lvalue))) continue; break; case P_STRING: |