]> git.eshelyaron.com Git - emacs.git/commitdiff
archive-int-to-mode: Fix order of testing S_ISUID, S_ISGID bits
authorTino Calancha <tino.calancha@gmail.com>
Tue, 15 Aug 2017 06:43:16 +0000 (15:43 +0900)
committerTino Calancha <tino.calancha@gmail.com>
Tue, 15 Aug 2017 06:43:31 +0000 (15:43 +0900)
* lisp/arc-mode.el (archive-int-to-mode):
Swap order of 2048 and 1024 tests (Bug#28092).
* test/lisp/arc-mode-tests.el (arc-mode-test-archive-int-to-mode):
Update test.

lisp/arc-mode.el
test/lisp/arc-mode-tests.el

index bd7548b704fcf7cd2de8217f8a6372cd33193b1e..938c143b8e4cca963492979d142f94bebf5c99b0 100644 (file)
@@ -559,13 +559,13 @@ FLOAT, if non-nil, means generate and return a float instead of an integer
     (if (zerop (logand   256 mode)) ?- ?r)
     (if (zerop (logand   128 mode)) ?- ?w)
     (if (zerop (logand    64 mode))
-       (if (zerop (logand  1024 mode)) ?- ?S)
-      (if (zerop (logand  1024 mode)) ?x ?s))
+       (if (zerop (logand  2048 mode)) ?- ?S)
+      (if (zerop (logand  2048 mode)) ?x ?s))
     (if (zerop (logand    32 mode)) ?- ?r)
     (if (zerop (logand    16 mode)) ?- ?w)
     (if (zerop (logand     8 mode))
-       (if (zerop (logand  2048 mode)) ?- ?S)
-      (if (zerop (logand  2048 mode)) ?x ?s))
+       (if (zerop (logand  1024 mode)) ?- ?S)
+      (if (zerop (logand  1024 mode)) ?x ?s))
     (if (zerop (logand     4 mode)) ?- ?r)
     (if (zerop (logand     2 mode)) ?- ?w)
     (if (zerop (logand     1 mode)) ?- ?x)))
index 04047bab62d2819ae273deee064de31f81b04d3b..8c8465d3669280a9aa4e57532a75a0b1b183032e 100644 (file)
@@ -27,7 +27,8 @@
                      (cons 420 "-rw-r--r--")
                      (cons 292 "-r--r--r--")
                      (cons 512 "----------")
-                     (cons 1024 "---S------"))))
+                     (cons 1024 "------S---") ; Bug#28092
+                     (cons 2048 "---S------"))))
     (dolist (x alist)
       (should (equal (cdr x) (archive-int-to-mode (car x)))))))