]> xenbits.xensource.com Git - libvirt.git/commitdiff
Spell TIOCSCTTY right in the error message
authorJán Tomko <jtomko@redhat.com>
Thu, 30 Oct 2014 16:13:00 +0000 (17:13 +0100)
committerJán Tomko <jtomko@redhat.com>
Thu, 30 Oct 2014 16:14:09 +0000 (17:14 +0100)
src/lxc/lxc_container.c

index 2af267454083ef09ea32b8f94a3a303cadca4ccb..f02b959eeb245cdc21d55b257a5ce04a6a9c65b7 100644 (file)
@@ -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;
     }