aboutsummaryrefslogtreecommitdiff
path: root/src/data.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-06-07 10:13:51 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-06-07 16:09:36 -0700
commitbdaf6ae42672f4de739002f51b1add178e53aed6 (patch)
tree7749b28fbfd2cfd8a37ceee27842965507a2a19c /src/data.lisp
parent1f489eb1936921f1f029ca9543480490ca89ae67 (diff)
downloadconsfigurator-bdaf6ae42672f4de739002f51b1add178e53aed6.tar.gz
rename REMOTE-FILE-{MODE-AND-SIZE -> STATS} & also return mtime
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/data.lisp')
-rw-r--r--src/data.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.lisp b/src/data.lisp
index b0397c5..814396b 100644
--- a/src/data.lisp
+++ b/src/data.lisp
@@ -271,7 +271,7 @@ and PATH has mode MODE."
(let ((stream (%get-data-stream data)))
(if (and (remote-exists-p path)
(multiple-value-bind (existing-mode existing-size)
- (remote-file-mode-and-size path)
+ (remote-file-stats path)
(and (or (not mode-supplied-p) (= mode existing-mode))
(= (file-length stream) existing-size)
(= (data-cksum data) (cksum path)))))