From df0383c624fa86d89cc438517340b4277366f133 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 5 Jun 2021 08:33:03 +0200 Subject: libbb: correct the name of is_TERM_dumb() Signed-off-by: Denys Vlasenko --- libbb/xfuncs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index c81ce4546..c40dcb706 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c @@ -303,7 +303,7 @@ int FAST_FUNC get_terminal_width(int fd) return width; } -int FAST_FUNC is_dumb_term(void) +int FAST_FUNC is_TERM_dumb(void) { char *term = getenv("TERM"); return term && strcmp(term, "dumb") == 0; -- cgit v1.2.3