diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2006-11-08 15:38:55 +0100 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2006-11-08 15:38:55 +0100 |
commit | 730d47348eb9383aefc99acff13c0d906aed2df6 (patch) | |
tree | 7b5b2c8b51278e5fb02ac27a4e2834dda966b053 /inotail.c | |
parent | ee9871f1934910cd8e88f10d5958afdbf3f0b5ac (diff) |
Spelling fixes and some small code reordering
Diffstat (limited to 'inotail.c')
-rw-r--r-- | inotail.c | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -101,13 +101,12 @@ static off_t lines_to_offset_from_begin(struct file_struct *f, unsigned int n_li char buf[BUFFER_SIZE]; off_t offset = 0; - /* tail everything vor 'inotail -n +0' */ + /* tail everything for 'inotail -n +0' */ if (n_lines == 0) return 0; - memset(&buf, 0, sizeof(buf)); - n_lines--; + memset(&buf, 0, sizeof(buf)); while (offset <= f->st_size && n_lines > 0) { int i, rc; @@ -144,9 +143,8 @@ static off_t lines_to_offset(struct file_struct *f, unsigned int n_lines) if (from_begin) return lines_to_offset_from_begin(f, n_lines); - else - n_lines++; /* We also count the last \n */ + n_lines++; /* We also count the last \n */ memset(&buf, 0, sizeof(buf)); while (offset > 0 && n_lines > 0) { @@ -184,7 +182,7 @@ static off_t lines_to_offset(struct file_struct *f, unsigned int n_lines) static inline off_t bytes_to_offset(struct file_struct *f, unsigned int n_bytes) { - /* tail everything vor 'inotail -c +0' */ + /* tail everything for 'inotail -c +0' */ if (from_begin && n_bytes == 0) return 0; else @@ -384,9 +382,9 @@ int main(int argc, char **argv) while ((c = getopt_long(argc, argv, "c:n:fvVh", long_opts, NULL)) != -1) { switch (c) { case 'c': + mode = M_BYTES; + /* fall through */ case 'n': - if (c == 'c') - mode = M_BYTES; if (*optarg == '+') from_begin = 1; else if (*optarg == '-') |