aboutsummaryrefslogtreecommitdiff
path: root/src/connection/chroot.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-16 15:29:29 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-16 15:29:29 -0700
commite2a3387cf777c5b190d70475e98ada83b9abbc4a (patch)
tree8e2018b8f38dedf0b849a0cfea588807ba0d63db /src/connection/chroot.lisp
parent09637e7c8918ce4d21bd7c703012baf792cc82b1 (diff)
downloadconsfigurator-e2a3387cf777c5b190d70475e98ada83b9abbc4a.tar.gz
drop plus signs & use underscores in C preprocessor constants
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/connection/chroot.lisp')
-rw-r--r--src/connection/chroot.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/connection/chroot.lisp b/src/connection/chroot.lisp
index e40d7ca..80c79cb 100644
--- a/src/connection/chroot.lisp
+++ b/src/connection/chroot.lisp
@@ -120,7 +120,7 @@ should be the mount point, without the chroot's root prefixed.")
(defmethod post-fork ((connection chroot.fork-connection))
(with-slots (into) connection
#+linux
- (progn (unshare +CLONE_NEWNS+)
+ (progn (unshare CLONE_NEWNS)
(mrun "mount" "--make-rslave"
(stripln (run "findmnt" "-nro" "TARGET" "-T" into)))
(linux-chroot-mounts connection))