diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-14 12:31:18 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-14 12:31:18 +1000 |
commit | 9d62ee2a815570b24a099b3960ed23942eebb3e7 (patch) | |
tree | 7b1b0d49601f5749353da6f11572446ba03ae1bc /source3/lib | |
parent | 35fca856604f32c1a30b018dcd05e7f43fafae5d (diff) | |
download | samba-9d62ee2a815570b24a099b3960ed23942eebb3e7.tar.gz samba-9d62ee2a815570b24a099b3960ed23942eebb3e7.tar.bz2 samba-9d62ee2a815570b24a099b3960ed23942eebb3e7.zip |
s3-lib Move strisnormal to it's only user in mangle_hash.c
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_str.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 13aa78cc91..fdb06425e2 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -221,19 +221,6 @@ void strnorm(char *s, int case_default) } /** - Check if a string is in "normal" case. -**/ - -bool strisnormal(const char *s, int case_default) -{ - if (case_default == CASE_UPPER) - return(!strhaslower(s)); - - return(!strhasupper(s)); -} - - -/** * Skip past some strings in a buffer - old version - no checks. * **/ |