summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2009-01-25 16:12:59 +0100
committerTobias Klauser <tklauser@distanz.ch>2009-01-25 16:12:59 +0100
commit2e4a74cecfb83d368b7b97c290f2b9d357dc9d72 (patch)
tree0df3c5247f42399f3f7582273aa6f1d16735e63f
parentae62197f6a0124fd6428d42a501e11cee68e6182 (diff)
Update copyright
-rw-r--r--Makefile2
-rw-r--r--changelog1
-rw-r--r--inotail.c2
-rw-r--r--inotail.h4
4 files changed, 5 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 2339ca2..f6a9172 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
# Makefile for inotail
#
-# Copyright (C) 2006-2008 Tobias Klauser <tklauser@distanz.ch>
+# Copyright (C) 2006-2009 Tobias Klauser <tklauser@distanz.ch>
#
# Licensed under the terms of the GNU General Public License; version 2 or later.
diff --git a/changelog b/changelog
index 3f0d9f7..d16302b 100644
--- a/changelog
+++ b/changelog
@@ -5,6 +5,7 @@ inotail 0.6
* Handle file truncation in follow mode
* Use sys/inotify.h instead of private copy of the inotify header (patch by
Adrian Bunk)
+ * Support all GNU commandline options (even the ones that make no sense)
* Various small fixes
-- Tobias Klauser <tklauser@distanz.ch> 2008-09-23 09:46
diff --git a/inotail.c b/inotail.c
index 5ecfcf4..6a9a2bb 100644
--- a/inotail.c
+++ b/inotail.c
@@ -3,7 +3,7 @@
* A fast implementation of tail which uses the inotify API present in
* recent versions of the Linux kernel.
*
- * Copyright (C) 2005-2008, Tobias Klauser <tklauser@distanz.ch>
+ * Copyright (C) 2005-2009, Tobias Klauser <tklauser@distanz.ch>
*
* The idea was taken from turbotail.
*
diff --git a/inotail.h b/inotail.h
index 3d6c232..c733943 100644
--- a/inotail.h
+++ b/inotail.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2005-2007, Tobias Klauser <tklauser@distanz.ch>
+ * Copyright (C) 2005-2009, Tobias Klauser <tklauser@distanz.ch>
*
* Licensed under the terms of the GNU General Public License; version 2 or later.
*/
@@ -21,7 +21,7 @@ enum tail_mode { M_LINES, M_BYTES };
/* Every tailed file is represented as a file_struct */
struct file_struct {
char *name; /* Name of file (or '-' for stdin) */
- int fd; /* File descriptor (or -1 if file is not open */
+ int fd; /* File descriptor (or -1 if file is not open) */
off_t size; /* File size */
blksize_t blksize; /* Blocksize for filesystem I/O */
unsigned ignore; /* Whether to ignore the file in further processing */