diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-05 08:33:03 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-05 08:33:03 +0200 |
commit | df0383c624fa86d89cc438517340b4277366f133 (patch) | |
tree | d278ea41dfc9cf2c88c2d469aef85d1312651121 | |
parent | 3d9c64915810cf684d75c8697b42e30c14011324 (diff) | |
download | busybox-w32-df0383c624fa86d89cc438517340b4277366f133.tar.gz busybox-w32-df0383c624fa86d89cc438517340b4277366f133.tar.bz2 busybox-w32-df0383c624fa86d89cc438517340b4277366f133.zip |
libbb: correct the name of is_TERM_dumb()
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | libbb/xfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
303 | return width; | 303 | return width; |
304 | } | 304 | } |
305 | 305 | ||
306 | int FAST_FUNC is_dumb_term(void) | 306 | int FAST_FUNC is_TERM_dumb(void) |
307 | { | 307 | { |
308 | char *term = getenv("TERM"); | 308 | char *term = getenv("TERM"); |
309 | return term && strcmp(term, "dumb") == 0; | 309 | return term && strcmp(term, "dumb") == 0; |