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\\):\\s-*\\(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
  (concat "\\(" "preserving times.*" "\\|" "set mode" "\\)" ":\\s-*"
	  (regexp-opt '("Operation not permitted") t))
  "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)