diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-07-09 13:08:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:55 -0500 |
commit | f929ee3e4eefe370c9cb4672ea4754fc17f5917d (patch) | |
tree | abdec604cac2927ae29c9eed7a6d15174bf665d0 /source4 | |
parent | 7caf17319a4c66b63f257294f2c3dd884e795f72 (diff) | |
download | samba-f929ee3e4eefe370c9cb4672ea4754fc17f5917d.tar.gz samba-f929ee3e4eefe370c9cb4672ea4754fc17f5917d.tar.bz2 samba-f929ee3e4eefe370c9cb4672ea4754fc17f5917d.zip |
r1422: StrnCaseCmp now needs to be non-static.
Andrew Bartlett
(This used to be commit 6709c7010df2912eec3dfc086343cb3cb7910459)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/util_str.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/util_str.c b/source4/lib/util_str.c index 70011cf80d..66acc0ca0e 100644 --- a/source4/lib/util_str.c +++ b/source4/lib/util_str.c @@ -150,7 +150,7 @@ int StrCaseCmp(const char *s, const char *t) Case insensitive string compararison, length limited. **/ -static int StrnCaseCmp(const char *s, const char *t, size_t n) +int StrnCaseCmp(const char *s, const char *t, size_t n) { pstring buf1, buf2; unix_strupper(s, strlen(s)+1, buf1, sizeof(buf1)); |