From: Christian Brauner Date: Sun, 15 Mar 2020 13:37:42 +0000 (+0100) Subject: conf: don't wrap strings X-Git-Tag: lxc-4.0.0~29^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b78872c03d636418a9e9bb59584cd395bb8adecf;p=thirdparty%2Flxc.git conf: don't wrap strings Signed-off-by: Christian Brauner --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index 08e6da29e..40db20c3f 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -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; }