From: Volker Lendecke Date: Thu, 20 Oct 2016 14:48:12 +0000 (+0200) Subject: smbd: Fix a typo X-Git-Tag: talloc-2.1.9~352 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6faf30b31cc7394360a6d3dafbf6a1f16842f6ad;p=thirdparty%2Fsamba.git smbd: Fix a typo Signed-off-by: Volker Lendecke Reviewed-by: Ralph Boehme --- diff --git a/source3/lib/ms_fnmatch.c b/source3/lib/ms_fnmatch.c index e32d094a6b2..9763afefe76 100644 --- a/source3/lib/ms_fnmatch.c +++ b/source3/lib/ms_fnmatch.c @@ -161,7 +161,7 @@ int ms_fnmatch(const char *pattern, const char *string, bool translate_pattern, } if (strpbrk(pattern, "<>*?\"") == NULL) { - /* this is not just an optmisation - it is essential + /* this is not just an optimisation - it is essential for LANMAN1 correctness */ if (is_case_sensitive) { return strcmp(pattern, string);