From: Paul Eggert Date: Thu, 13 Oct 2016 00:48:04 +0000 (-0700) Subject: * src/filelock.c (current_lock_owner): Update comment. X-Git-Tag: emacs-25.1.90~126 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d8374c4e95d6b2a0e839b3b49b12225222e8c721;p=emacs.git * src/filelock.c (current_lock_owner): Update comment. --- diff --git a/src/filelock.c b/src/filelock.c index 23bb4b83bd5..6c60c3e8e1c 100644 --- a/src/filelock.c +++ b/src/filelock.c @@ -574,10 +574,10 @@ current_lock_owner (lock_info_type *owner, char *lfname) break; case '\357': - /* Treat "\357\200\242" (U+F022 in UTF-8) as if it were ":". - This works around a bug in Samba, which can mistakenly - transliterate ':' to U+F022 in symlink contents (Bug#24656). - See . */ + /* Treat "\357\200\242" (U+F022 in UTF-8) as if it were ":" (Bug#24656). + This works around a bug in the Linux CIFS kernel client, which can + mistakenly transliterate ':' to U+F022 in symlink contents. + See . */ if (! (boot[0] == '\200' && boot[1] == '\242')) return -1; boot += 2;