[hackers] [sbase] tail: Fix tail -n -val to handle leading spaces || sin

From: <git_AT_suckless.org>
Date: Tue, 24 Mar 2015 23:53:39 +0100 (CET)

commit fe3fc418380c3dae63a5da13376912f45599e5c3
Author: sin <sin_AT_2f30.org>
Date: Mon Feb 9 16:01:25 2015 +0000

    tail: Fix tail -n -val to handle leading spaces
    
    Previously 'tail -n " -20" foo' was broken, now it works.

diff --git a/tail.c b/tail.c
index 9f5bd4f..2265bac 100644
--- a/tail.c
+++ b/tail.c
_AT_@ -74,8 +74,7 @@ main(int argc, char *argv[])
                 break;
         case 'n':
                 lines = EARGF(usage());
- n = estrtonum(lines[0] == '-' ? lines + 1 : lines,
- 0, MIN(LLONG_MAX, SIZE_MAX));
+ n = MIN(llabs(estrtonum(lines, LLONG_MIN + 1, MIN(LLONG_MAX, SIZE_MAX))), SIZE_MAX);
                 if (lines[0] == '+')
                         tail = dropinit;
                 break;
Received on Tue Mar 24 2015 - 23:53:39 CET

This archive was generated by hypermail 2.3.0 : Wed Mar 25 2015 - 00:08:44 CET