summaryrefslogtreecommitdiff
path: root/source3/lib/util_str.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-09-05 05:32:32 +0000
committerGerald Carter <jerry@samba.org>2003-09-05 05:32:32 +0000
commit5a74bdd7aaf644fc3de94b26d3c85e088211067a (patch)
treeadbcd4afde32ac9eae87a9e4714ecbd0e69dfa55 /source3/lib/util_str.c
parent4fd8542cf5ed48473ee8360b811835b3a794e882 (diff)
downloadsamba-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/lib/util_str.c')
-rw-r--r--source3/lib/util_str.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c
index 4556405b04..70567f88af 100644
--- a/source3/lib/util_str.c
+++ b/source3/lib/util_str.c
@@ -1470,6 +1470,35 @@ void str_list_free(char ***list)
SAFE_FREE(*list);
}
+/******************************************************************************
+ version of standard_sub_basic() for string lists; uses alloc_sub_basic()
+ for the work
+ *****************************************************************************/
+
+BOOL str_list_sub_basic( char **list, const char *smb_name )
+{
+ char *s, *tmpstr;
+
+ while ( *list ) {
+ s = *list;
+ tmpstr = alloc_sub_basic(smb_name, s);
+ if ( !tmpstr ) {
+ DEBUG(0,("str_list_sub_basic: alloc_sub_basic() return NULL!\n"));
+ return False;
+ }
+
+ *list = tmpstr;
+
+ list++;
+ }
+
+ return True;
+}
+
+/******************************************************************************
+ substritute a specific pattern in a string list
+ *****************************************************************************/
+
BOOL str_list_substitute(char **list, const char *pattern, const char *insert)
{
char *p, *s, *t;
@@ -1525,6 +1554,7 @@ BOOL str_list_substitute(char **list, const char *pattern, const char *insert)
}
}
+
list++;
}