1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

r1422: StrnCaseCmp now needs to be non-static.

Andrew Bartlett
(This used to be commit 6709c7010df2912eec3dfc086343cb3cb7910459)
This commit is contained in:
Andrew Bartlett 2004-07-09 13:08:00 +00:00 committed by Gerald (Jerry) Carter
parent 7caf17319a
commit f929ee3e4e

View File

@ -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));