diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-18 15:56:07 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-18 15:56:07 +0200 |
commit | 89c95454300f28b0241a44fc2aa7886304c90824 (patch) | |
tree | 60b329935794e8d16d1244f1fe98efe242c4991a /source3/include | |
parent | 23c95c9119848aba47a5d533a75c92a9d7a0bc95 (diff) | |
download | samba-89c95454300f28b0241a44fc2aa7886304c90824.tar.gz samba-89c95454300f28b0241a44fc2aa7886304c90824.tar.bz2 samba-89c95454300f28b0241a44fc2aa7886304c90824.zip |
Use str_list_equal() rather than str_list_compare().
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index cab294d8b1..ac900233fa 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1664,7 +1664,7 @@ char *binary_string(char *buf, int len); int fstr_sprintf(fstring s, const char *fmt, ...); char **str_list_make(TALLOC_CTX *mem_ctx, const char *string, const char *sep); char **str_list_copy(TALLOC_CTX *mem_ctx, const char **list); -bool str_list_compare(char **list1, char **list2); +bool str_list_equal(const char **list1, const char **list2); size_t str_list_length( const char * const*list ); bool str_list_sub_basic( char **list, const char *smb_name, const char *domain_name ); |