summaryrefslogtreecommitdiffstats
path: root/mutt_curses.h
diff options
context:
space:
mode:
authorBrendan Cully <brendan@kublai.com>2003-07-14 12:17:43 +0000
committerBrendan Cully <brendan@kublai.com>2003-07-14 12:17:43 +0000
commitc4ef62a751b0727a7a5c332a048df84fb1939c09 (patch)
tree3dea855b1a8b3b39a19c6941acaea3792664862d /mutt_curses.h
parenta68a67377196e09fd764b461d8fedcf31be763e6 (diff)
The attached patch prevents mutt from reading the push buffer when
asking for passwords. This is a proper fix for bug 1312. I think it's uncontroversial.
Diffstat (limited to 'mutt_curses.h')
-rw-r--r--mutt_curses.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/mutt_curses.h b/mutt_curses.h
index b7b1a828..96668327 100644
--- a/mutt_curses.h
+++ b/mutt_curses.h
@@ -87,7 +87,8 @@ void mutt_curs_set (int);
#define CI_is_return(c) ((c) == '\r' || (c) == '\n')
#endif
-event_t mutt_getch (void);
+#define mutt_getch() _mutt_getch(0)
+event_t _mutt_getch (int);
void mutt_endwin (const char *);
void mutt_flushinp (void);