From dd3461af2f227efae7a69a67e5b8dc1f665b57b9 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Thu, 9 Jan 2003 10:00:49 +0000 Subject: Make output the same as upstream, patch by Tito --- miscutils/strings.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'miscutils/strings.c') diff --git a/miscutils/strings.c b/miscutils/strings.c index 043d6b8c1..3d3aaf589 100644 --- a/miscutils/strings.c +++ b/miscutils/strings.c @@ -50,7 +50,7 @@ int strings_main(int argc, char **argv) minlen = -1; while ((ch = getopt(argc, argv, "an:of")) > 0) switch(ch) { - case '-': + case 'a': break; case 'f': fflg = 1; @@ -86,6 +86,7 @@ int strings_main(int argc, char **argv) foff = 0; for (cnt = 0; (ch = getchar()) != EOF;) { + foff++; if (ISSTR(ch)) { if (!cnt) C = bfr; @@ -95,7 +96,7 @@ int strings_main(int argc, char **argv) if (fflg) printf("%s:", file); if (oflg) - printf("%07ld %s", (long)(foff - minlen), (char *)bfr); + printf("%7ld %s", (long)(foff - minlen), (char *)bfr); else printf("%s", bfr); while ((ch = getchar()) != EOF && ISSTR(ch)) -- cgit v1.2.3