Variable: tramp-operation-not-permitted-regexp
tramp-operation-not-permitted-regexp is a customizable variable
defined in tramp.el.gz.
Value
"\\(?:preserving times.*\\|set mode\\):[[:blank:]]*Operation not permitted"
Documentation
Regular expression matching keep-date problems in (s)cp operations.
Copying has been performed successfully already, so this message can be ignored safely.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defcustom tramp-operation-not-permitted-regexp
(rx (| (: "preserving times" (* nonl)) "set mode") ":" (* blank)
"Operation not permitted")
"Regular expression matching keep-date problems in (s)cp operations.
Copying has been performed successfully already, so this message can
be ignored safely."
:type 'regexp)