]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
conf: don't wrap strings
authorChristian Brauner <christian.brauner@ubuntu.com>
Sun, 15 Mar 2020 13:37:42 +0000 (14:37 +0100)
committerChristian Brauner <christian.brauner@ubuntu.com>
Sun, 15 Mar 2020 13:37:42 +0000 (14:37 +0100)
Signed-off-by: Christian Brauner <christian.brauner@ubuntu.com>
src/lxc/conf.c

index 08e6da29e9104e1c4ffee8916e05695bcf0bd109..40db20c3fee976327ac6bd7089d99cbe3199b34c 100644 (file)
@@ -941,13 +941,13 @@ int lxc_allocate_ttys(struct lxc_conf *conf)
                /* Prevent leaking the file descriptors to the container */
                ret = fd_cloexec(tty->master, true);
                if (ret < 0)
-                       SYSWARN("Failed to set FD_CLOEXEC flag on master fd %d of "
-                               "tty device \"%s\"", tty->master, tty->name);
+                       SYSWARN("Failed to set FD_CLOEXEC flag on master fd %d of tty device \"%s\"",
+                               tty->master, tty->name);
 
                ret = fd_cloexec(tty->slave, true);
                if (ret < 0)
-                       SYSWARN("Failed to set FD_CLOEXEC flag on slave fd %d of "
-                               "tty device \"%s\"", tty->slave, tty->name);
+                       SYSWARN("Failed to set FD_CLOEXEC flag on slave fd %d of tty device \"%s\"",
+                               tty->slave, tty->name);
 
                tty->busy = -1;
        }