]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/filelock.c (current_lock_owner): Update comment.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 13 Oct 2016 00:48:04 +0000 (17:48 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 13 Oct 2016 00:48:34 +0000 (17:48 -0700)
src/filelock.c

index 23bb4b83bd529d7119b0c04ee56e2513c1f13c4e..6c60c3e8e1cca5e1a296d54f2c367ebc4c0e41f8 100644 (file)
@@ -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 <https://bugzilla.redhat.com/show_bug.cgi?id=1271407#c8>.  */
+      /* 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 <https://bugzilla.redhat.com/show_bug.cgi?id=1384153>.  */
       if (! (boot[0] == '\200' && boot[1] == '\242'))
        return -1;
       boot += 2;