From: Rachid Koucha <47061324+Rachid-Koucha@users.noreply.github.com> Date: Thu, 11 Jul 2019 07:42:05 +0000 (+0200) Subject: Typo fix X-Git-Tag: lxc-3.2.0~5^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8332a09c969e43066de7d57f5118220671658efd;p=thirdparty%2Flxc.git Typo fix Fixed a typo in error message Signed-off-by: Rachid Koucha --- diff --git a/src/lxc/terminal.c b/src/lxc/terminal.c index 4ea0c5dc3..578de68aa 100644 --- a/src/lxc/terminal.c +++ b/src/lxc/terminal.c @@ -451,7 +451,7 @@ int lxc_setup_tios(int fd, struct termios *oldtios) struct termios newtios; if (!isatty(fd)) { - ERROR("File descriptor %d does not refert to a terminal", fd); + ERROR("File descriptor %d does not refer to a terminal", fd); return -1; }