diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-03-15 11:28:45 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-03-15 11:28:45 +0000 |
commit | a4261c229571bea5ce3fc00f024133b3b50cd4bf (patch) | |
tree | 8606d4af7c549b91346d47ee20ec35bc8db51f25 | |
parent | 662b5498183a7ed981bc0fa9d29acb634f326d7c (diff) | |
download | samba-a4261c229571bea5ce3fc00f024133b3b50cd4bf.tar.gz samba-a4261c229571bea5ce3fc00f024133b3b50cd4bf.tar.bz2 samba-a4261c229571bea5ce3fc00f024133b3b50cd4bf.zip |
Fix the 'non-optomizing compiler' case...
Andrew Bartlett
(This used to be commit 94424c5d72246b2e58f3a21aa0de6949d7eb2da1)
-rw-r--r-- | source3/include/safe_string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/safe_string.h b/source3/include/safe_string.h index 8b3665d97b..3e19659961 100644 --- a/source3/include/safe_string.h +++ b/source3/include/safe_string.h @@ -199,8 +199,8 @@ size_t __unsafe_string_function_usage_here2__(void); #define safe_strcat_fn2 safe_strcat_fn #define push_string_fn2 push_string_fn #define pull_string_fn2 pull_string_fn -#define clistr_push_fn2 clistr_push_fn2 -#define clistr_pull_fn2 clistr_pull_fn2 +#define clistr_push_fn2 clistr_push_fn +#define clistr_pull_fn2 clistr_pull_fn #endif |