From: Sebastian Kemper Date: Wed, 9 Oct 2019 17:05:37 +0000 (+0200) Subject: [fs_cli] Fix typo, resolves garbled screen X-Git-Tag: v1.10.2^2~94^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F44%2Fhead;p=thirdparty%2Ffreeswitch.git [fs_cli] Fix typo, resolves garbled screen Related to FS-11309. Commit bc3e1c9e7de1855eec454bba467fd2586e5e251b introduced a typo that results in EL_REFRESH never being used, even if available. This can cause the screen to garble. This fixes the typo. Signed-off-by: Sebastian Kemper --- diff --git a/libs/esl/fs_cli.c b/libs/esl/fs_cli.c index 99db32764b..fd6153e091 100644 --- a/libs/esl/fs_cli.c +++ b/libs/esl/fs_cli.c @@ -674,7 +674,7 @@ static void redisplay(void) esl_mutex_lock(MUTEX); { #ifdef HAVE_LIBEDIT -#ifdef XHAVE_DECL_EL_REFRESH +#ifdef HAVE_DECL_EL_REFRESH #ifdef HAVE_EL_WSET /* Current libedit versions don't implement EL_REFRESH in eln.c so * use the wide version instead. */