summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-10-25 13:50:25 +0200
committerVolker Lendecke <vl@samba.org>2008-10-25 13:50:25 +0200
commit1ad54998a971b58f870263b4b8d6e051d627c79e (patch)
tree4e2df5c13b0a695dd5c55727721f05391cadd079
parent56164805147935b8e3b03c22adee7cc2b1e1c3b8 (diff)
downloadsamba-1ad54998a971b58f870263b4b8d6e051d627c79e.tar.gz
samba-1ad54998a971b58f870263b4b8d6e051d627c79e.tar.bz2
samba-1ad54998a971b58f870263b4b8d6e051d627c79e.zip
Add str_list_check[_ci] to s3's proto.h
Jelmer, when I include lib/util/util.h into some s3 file I get errors, this is why I put those prototypes here as a workaround. Might be fixed differently later.
-rw-r--r--source3/include/proto.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index d04968ed8a..e4a445bcd0 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -1663,6 +1663,9 @@ size_t str_list_length( const char * const*list );
bool str_list_sub_basic( char **list, const char *smb_name,
const char *domain_name );
bool str_list_substitute(char **list, const char *pattern, const char *insert);
+bool str_list_check(const char **list, const char *s);
+bool str_list_check_ci(const char **list, const char *s);
+
char *ipstr_list_make(char **ipstr_list,
const struct ip_service *ip_list,
int ip_count);