[dev] [sbase] [PATCH] Fix tail -n +

From: Wolfgang Corcoran-Mathe <first.lord.of.teal_AT_gmail.com>
Date: Tue, 16 Sep 2014 19:14:53 -0400

Fixed typo breaking + functionality in tail:

diff --git a/tail.c b/tail.c
index 59e68ca..87a08b9 100644
--- a/tail.c
+++ b/tail.c
_AT_@ -60,7 +60,7 @@ dropinit(FILE *fp, const char *str, long n)
        ssize_t len;
        unsigned long i = 0;
 
- while(i < n && ((len = agetline(&buf, &size, fp) != -1)))
+ while(i < n && ((len = agetline(&buf, &size, fp)) != -1))
                if(len && buf[len - 1] == '\n')
                        i++;
        free(buf);

-- 
Wolfgang Corcoran-Mathe
Received on Wed Sep 17 2014 - 01:14:53 CEST

This archive was generated by hypermail 2.3.0 : Wed Sep 17 2014 - 01:24:07 CEST