diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-09-24 23:50:05 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2009-09-24 23:58:19 +0200 |
commit | 918b5a7e057bd91289ec06b3ef8d95da43a50ede (patch) | |
tree | 1c689e510d5f0f80ded8339a859abc4b3ecee30e /source3/include | |
parent | 506b0b6435ee86d58b4f92b91f1f2b0c498da3fd (diff) | |
download | samba-918b5a7e057bd91289ec06b3ef8d95da43a50ede.tar.gz samba-918b5a7e057bd91289ec06b3ef8d95da43a50ede.tar.bz2 samba-918b5a7e057bd91289ec06b3ef8d95da43a50ede.zip |
s3:util_str "str_list_make_v3" - introduce also here the "const" result
I did this to match with the default util strlist library.
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 d664a26949..e17486b7fc 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1563,7 +1563,7 @@ bool validate_net_name( const char *name, const char *invalid_chars, int max_len); char *escape_shell_string(const char *src); -char **str_list_make_v3(TALLOC_CTX *mem_ctx, const char *string, const char *sep); +const char **str_list_make_v3(TALLOC_CTX *mem_ctx, const char *string, const char *sep); /* The following definitions come from lib/util_unistr.c */ |