From bba4c8c76bca1953199d250cc8e9d3f8546eb726 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Mon, 18 Jun 2001 21:05:04 +0000 Subject: [PATCH] Fix my own typo: protect the FLUSHO usage with "#ifdef FLUSHO", not "#ifndef FLUSHO". --- Modules/termios.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/termios.c b/Modules/termios.c index bfd8e7832385..c77dff36ad79 100644 --- a/Modules/termios.c +++ b/Modules/termios.c @@ -516,7 +516,7 @@ static struct constant { #ifdef ECHOKE {"ECHOKE", ECHOKE}, #endif -#ifndef FLUSHO +#ifdef FLUSHO {"FLUSHO", FLUSHO}, #endif {"NOFLSH", NOFLSH}, -- 2.47.3