From 3d15fe78eb01bbdae62666b2b7d8c13da92ac05f Mon Sep 17 00:00:00 2001 From: Nick Roberts Date: Thu, 5 Aug 2010 17:18:55 +1200 Subject: [PATCH] Fix compilation error. --- src/sysdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sysdep.c b/src/sysdep.c index 1b2c9324528..d8ae46f19be 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -522,7 +522,7 @@ child_setup_tty (int out) s.main.c_lflag |= ICANON; /* Enable line editing and eof processing */ s.main.c_cc[VEOF] = 'D'&037; /* Control-D */ -#ifdef 0 /* These settins only apply to non-ICANON mode. */ +#if 0 /* These settings only apply to non-ICANON mode. */ s.main.c_cc[VMIN] = 1; s.main.c_cc[VTIME] = 0; #endif -- 2.39.2