diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-07-07 17:24:32 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-07-07 19:16:28 +0200 |
commit | 0f006751ec22a13de898fbafcb6de5a8b8d5ec15 (patch) | |
tree | e2f1934f27f29095eab98549d5a3c46bf04fdf53 /lib/util/string_wrappers.h | |
parent | 30574a73d8073e1bb0a552fdf8444f17eeebec74 (diff) | |
download | samba-0f006751ec22a13de898fbafcb6de5a8b8d5ec15.tar.gz samba-0f006751ec22a13de898fbafcb6de5a8b8d5ec15.tar.bz2 samba-0f006751ec22a13de898fbafcb6de5a8b8d5ec15.zip |
s3:libsmb: remove unused clistr_push_fn()
metze
Diffstat (limited to 'lib/util/string_wrappers.h')
-rw-r--r-- | lib/util/string_wrappers.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/util/string_wrappers.h b/lib/util/string_wrappers.h index 31dc9140eb..c39ff1f859 100644 --- a/lib/util/string_wrappers.h +++ b/lib/util/string_wrappers.h @@ -73,11 +73,6 @@ size_t __unsafe_string_function_usage_here_size_t__(void); ? __unsafe_string_function_usage_here_size_t__() \ : push_string_check_fn(dest, src, dest_len, flags)) -#define clistr_push(cli, dest, src, dest_len, flags) \ - (CHECK_STRING_SIZE(dest, dest_len) \ - ? __unsafe_string_function_usage_here_size_t__() \ - : clistr_push_fn(cli, dest, src, dest_len, flags)) - #define srvstr_push(base_ptr, smb_flags2, dest, src, dest_len, flags) \ (CHECK_STRING_SIZE(dest, dest_len) \ ? __unsafe_string_function_usage_here_size_t__() \ @@ -97,7 +92,6 @@ size_t __unsafe_string_function_usage_here_size_t__(void); #else #define push_string_check push_string_check_fn -#define clistr_push clistr_push_fn #define srvstr_push srvstr_push_fn #define checked_strlcpy strlcpy |