libbb: correct the name of is_TERM_dumb()

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2021-06-05 08:33:03 +02:00
parent 3d9c649158
commit df0383c624

View File

@ -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;