aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2014-09-13 00:26:21 +0200
committerJohn Stebbins <stebbins@jetheaddev.com>2015-01-18 09:47:32 -0700
commit891de4b27a07b808839b9e873b6a886248c8fd6b (patch)
tree675bae1da17210eff689f933a2ad32d3af194c1d
parent4039f11ed82d84009b5146f0a563f33ced33e4db (diff)
downloadffmpeg-891de4b27a07b808839b9e873b6a886248c8fd6b.tar.gz
log: Unbreak no-tty support on 256color terminals
-rw-r--r--libavutil/log.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavutil/log.c b/libavutil/log.c
index 5a8f293f20..d38e40bfda 100644
--- a/libavutil/log.c
+++ b/libavutil/log.c
@@ -75,7 +75,8 @@ static void check_color_terminal(void)
char *term = getenv("TERM");
use_color = !getenv("NO_COLOR") && !getenv("AV_LOG_FORCE_NOCOLOR") &&
(getenv("TERM") && isatty(2) || getenv("AV_LOG_FORCE_COLOR"));
- use_color += term && strstr(term, "256color");
+ if (use_color)
+ use_color += term && strstr(term, "256color");
#else
use_color = getenv("AV_LOG_FORCE_COLOR") && !getenv("NO_COLOR") &&
!getenv("AV_LOG_FORCE_NOCOLOR");