aboutsummaryrefslogtreecommitdiff
path: root/src/connection.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-02 14:15:44 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-02 14:15:44 -0700
commit79bcac46054b8923b163c17167b77ee9a21be988 (patch)
tree45d65f0ede8be79b45bc95bc998f108a1aeedd9e /src/connection.lisp
parent159ff0bda5c67767599509313468c157118ad70e (diff)
downloadconsfigurator-79bcac46054b8923b163c17167b77ee9a21be988.tar.gz
rename RUN-FAILED accessors
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/connection.lisp')
-rw-r--r--src/connection.lisp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/connection.lisp b/src/connection.lisp
index 2253e08..7db2413 100644
--- a/src/connection.lisp
+++ b/src/connection.lisp
@@ -267,18 +267,18 @@ login(1)). Tilde expansion works correctly."
;; their corresponding implementation of CONNECTION-RUN).
(define-condition run-failed (error)
- ((cmd :initarg :cmd :reader failed-cmd)
- (stdout :initarg :stdout :reader failed-stdout)
- (stderr :initarg :stderr :reader failed-stderr)
- (exit-code :initarg :exit-code :reader failed-exit-code))
+ ((cmd :initarg :cmd :reader run-failed-cmd)
+ (stdout :initarg :stdout :reader run-failed-stdout)
+ (stderr :initarg :stderr :reader run-failed-stderr)
+ (exit-code :initarg :exit-code :reader run-failed-exit))
(:report (lambda (condition stream)
(format
stream
"~&'~A' failed, exit code ~A~%~%stderr was:~%~A~&~%stdout:~%~A"
- (failed-cmd condition)
- (failed-exit-code condition)
- (failed-stderr condition)
- (failed-stdout condition)))))
+ (run-failed-cmd condition)
+ (run-failed-exit condition)
+ (run-failed-stderr condition)
+ (run-failed-stdout condition)))))
(defmacro with-remote-temporary-file ((file
&key