aboutsummaryrefslogtreecommitdiff
path: root/src/property/disk.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-03 09:34:37 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-04 14:47:02 -0700
commit006d3969bad1f84c0133a36ed9a623b59bd01c0e (patch)
treeb16c80a6b3d9930dc98f3e3d141a8dabd075b05d /src/property/disk.lisp
parent6195f10ed2c7c8999b2fd8078a12c6c84cb5a592 (diff)
downloadconsfigurator-006d3969bad1f84c0133a36ed9a623b59bd01c0e.tar.gz
rename basic propapp accessors
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/disk.lisp')
-rw-r--r--src/property/disk.lisp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/property/disk.lisp b/src/property/disk.lisp
index fd0df1b..52a9047 100644
--- a/src/property/disk.lisp
+++ b/src/property/disk.lisp
@@ -750,17 +750,17 @@ must not be modified."
(define-function-property-combinator with-these-open-volumes*
(volumes propapp &key (mount-below nil mount-below-supplied-p))
(:retprop
- :type (propapptype propapp)
+ :type (propapp-type propapp)
:hostattrs (lambda-ignoring-args
(require-volumes-data volumes)
- (propappattrs propapp))
+ (propapp-attrs propapp))
:apply
(lambda-ignoring-args
(with-connattrs (:opened-volumes
(apply #'open-volumes-and-contents
`(,volumes ,@(and mount-below-supplied-p
`(:mount-below ,mount-below)))))
- (unwind-protect (propappapply propapp)
+ (unwind-protect (apply-propapp propapp)
(mrun "sync")
(mapc #'close-volume (get-connattr :opened-volumes)))))
:args (cdr propapp)))