diff options
author | Volker Lendecke <vl@samba.org> | 2008-06-25 16:24:33 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-06-25 16:25:05 +0200 |
commit | 335e3b11971ebbec415620d42512479b16c952fc (patch) | |
tree | 9829471efc78f3ab6dc2e64356b148657b5293cf | |
parent | 927621ba122d9c451bfaac4f2c8ba0e5acbfead3 (diff) | |
download | samba-335e3b11971ebbec415620d42512479b16c952fc.tar.gz samba-335e3b11971ebbec415620d42512479b16c952fc.tar.bz2 samba-335e3b11971ebbec415620d42512479b16c952fc.zip |
Fix the build
(This used to be commit 3bfeae651ff4bd0d777e7bc5980008960d8e5a44)
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |