[git commit] libbb: correct the name of is_TERM_dumb()
Denys Vlasenko
vda.linux at googlemail.com
Sat Jun 5 06:33:03 UTC 2021
commit: https://git.busybox.net/busybox/commit/?id=df0383c624fa86d89cc438517340b4277366f133
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master
Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
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;
More information about the busybox-cvs
mailing list