From 14046059e1d8eeb1a840cd8f3b35f00ff22ff2a2 Mon Sep 17 00:00:00 2001 From: Alexander Kabaev Date: Wed, 28 Jul 2004 05:37:18 +0000 Subject: [PATCH] Add missing () to function invocation. --- contrib/telnet/telnetd/termstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/telnet/telnetd/termstat.c b/contrib/telnet/telnetd/termstat.c index 36f599722308..88425206da56 100644 --- a/contrib/telnet/telnetd/termstat.c +++ b/contrib/telnet/telnetd/termstat.c @@ -439,7 +439,7 @@ clientstat(int code, int parm1, int parm2) useeditmode = 0; if (tty_isediting()) useeditmode |= MODE_EDIT; - if (tty_istrapsig) + if (tty_istrapsig()) useeditmode |= MODE_TRAPSIG; if (tty_issofttab()) useeditmode |= MODE_SOFT_TAB;