From eb856fbb48c77cde01a6211ed068ac97b958e084 Mon Sep 17 00:00:00 2001 From: Tilghman Lesher Date: Sat, 3 Nov 2007 14:19:47 +0000 Subject: [PATCH] Revert commit #86119. Some users intentionally do not want colorized terminals, so this was a misfeature. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@88437 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/term.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/main/term.c b/main/term.c index cb05a8f0f5..d051338d87 100644 --- a/main/term.c +++ b/main/term.c @@ -80,16 +80,8 @@ int ast_term_init(void) int termfd = -1, parseokay = 0, i; if (!term) -#ifdef linux - term = "linux"; -#elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) - term = "cons25"; -#elif defined(SOLARIS) - term = "sun-color"; -#else return 0; -#endif - if (ast_opt_no_color) + if (!ast_opt_console || ast_opt_no_color || !ast_opt_no_fork) return 0; for (i=0 ;; i++) {