1
0
mirror of https://gitlab.com/libvirt/libvirt.git synced 2025-01-12 13:17:58 +03:00

Spell TIOCSCTTY right in the error message

This commit is contained in:
Ján Tomko 2014-10-30 17:13:00 +01:00
parent 4abcf04e7c
commit b43e6662df

View 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;
}