diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-12-06 07:24:29 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-12-06 07:24:29 +0000 |
commit | 0ee0a8d5396c9da17ba47991715da3ff8ea484f1 (patch) | |
tree | 41212df3f3f550af86674d69c143f612d755ae26 /util-linux | |
parent | b6ecbdc07dc444fb94e2024131df2f51d17399dd (diff) | |
download | busybox-0ee0a8d5396c9da17ba47991715da3ff8ea484f1.tar.gz |
Fix running more on files in the (broken) procfs that claim 0 length
when that isn't actually true.
-Erik
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/more.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index 5fe1da423..cc5f86e0d 100644 --- a/util-linux/more.c +++ b/util-linux/more.c @@ -109,6 +109,7 @@ extern int more_main(int argc, char **argv) if(file==0) goto loop; + st.st_size = 0; fstat(fileno(file), &st); if(please_display_more_prompt>0) @@ -128,7 +129,7 @@ extern int more_main(int argc, char **argv) if (please_display_more_prompt>0) { len = printf("--More-- "); - if (file != stdin) { + if (file != stdin && st.st_size > 0) { #if _FILE_OFFSET_BITS == 64 len += printf("(%d%% of %lld bytes)", (int) (100 * ((double) ftell(file) / |