From: Fred Drake Date: Mon, 18 Jun 2001 21:05:04 +0000 (+0000) Subject: Fix my own typo: protect the FLUSHO usage with "#ifdef FLUSHO", not X-Git-Tag: v2.1.1c1~75 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bba4c8c76bca1953199d250cc8e9d3f8546eb726;p=thirdparty%2FPython%2Fcpython.git Fix my own typo: protect the FLUSHO usage with "#ifdef FLUSHO", not "#ifndef FLUSHO". --- 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},