From f929ee3e4eefe370c9cb4672ea4754fc17f5917d Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 9 Jul 2004 13:08:00 +0000 Subject: r1422: StrnCaseCmp now needs to be non-static. Andrew Bartlett (This used to be commit 6709c7010df2912eec3dfc086343cb3cb7910459) --- source4/lib/util_str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib') 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)); -- cgit