From 335e3b11971ebbec415620d42512479b16c952fc Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 25 Jun 2008 16:24:33 +0200 Subject: Fix the build (This used to be commit 3bfeae651ff4bd0d777e7bc5980008960d8e5a44) --- source3/param/loadparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/param/loadparm.c') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 9698feb060..b679b79fea 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -5380,7 +5380,7 @@ static param_opt_struct *get_parametrics(int snum, const char *type, const char } while (data) { - if (strcasecmp(data->key, param_key) == 0) { + if (StrCaseCmp(data->key, param_key) == 0) { string_free(¶m_key); return data; } -- cgit