From e4f4d8ebacc5b44cd110d201de5b26c90cc849be Mon Sep 17 00:00:00 2001 From: Sean Whitton Date: Sat, 12 Mar 2022 15:37:50 -0700 Subject: MAPC-OPEN-{INPUT,OUTPUT}-STREAMS: don't use &rest This brings these functions closer to MAPC. Signed-off-by: Sean Whitton --- src/connection/linux-namespace.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/connection') diff --git a/src/connection/linux-namespace.lisp b/src/connection/linux-namespace.lisp index a6f2e0a..398cf63 100644 --- a/src/connection/linux-namespace.lisp +++ b/src/connection/linux-namespace.lisp @@ -316,8 +316,8 @@ setgroups(2) is denied in the namespace." ;; If we entered new PID or time namespaces then need to fork ;; so we're actually within them; for simplicity, always fork. (mapc-open-output-streams - #'force-output - *standard-output* *error-output* *debug-io* *terminal-io*) + #'force-output (list *debug-io* *terminal-io* + *standard-output* *error-output*)) (let ((child (nix:fork))) (when (plusp child) (let ((status (nth-value 1 (nix:waitpid child)))) -- cgit v1.2.3