diff options
Diffstat (limited to 'source3/param')
-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 8f6af68325..9698feb060 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 (strcmp(data->key, param_key) == 0) { + if (strcasecmp(data->key, param_key) == 0) { string_free(¶m_key); return data; } |