From: Ján Tomko Date: Thu, 30 Oct 2014 16:13:00 +0000 (+0100) Subject: Spell TIOCSCTTY right in the error message X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b43e6662df6ae4d82d5856d82404431587fed3da;p=libvirt.git Spell TIOCSCTTY right in the error message --- diff --git a/src/lxc/lxc_container.c b/src/lxc/lxc_container.c index 2af2674540..f02b959eeb 100644 --- a/src/lxc/lxc_container.c +++ b/src/lxc/lxc_container.c @@ -281,7 +281,7 @@ static int lxcContainerSetupFDs(int *ttyfd, if (ioctl(*ttyfd, TIOCSCTTY, NULL) < 0) { virReportSystemError(errno, "%s", - _("ioctl(TIOCSTTY) failed")); + _("ioctl(TIOCSCTTY) failed")); goto cleanup; }