update license year
authorMarkus Teich <markus.teich@stusta.mhn.de>
Wed, 4 Nov 2015 00:40:50 +0000 (01:40 +0100)
committerMarkus Teich <markus.teich@stusta.mhn.de>
Wed, 4 Nov 2015 00:40:50 +0000 (01:40 +0100)
LICENSE
sent.c

diff --git a/LICENSE b/LICENSE
index e429f4150fadbbc72d87122f1be14d0677500a12..d1da8fc42901ffe0be7222c1a79e1655b5c61a08 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 The MIT License (MIT)
 
-Copyright (c) 2014 Markus Teich
+Copyright (c) 2014-2015 Markus Teich
 
 png handling stuff adapted from meh by John Hawthorn
 
diff --git a/sent.c b/sent.c
index 81ef04e0affe011b2d91d4a35d4b1682026b5623..2754eb045c8f857529573e7a6cd38599ebc82ae7 100644 (file)
--- a/sent.c
+++ b/sent.c
@@ -381,7 +381,7 @@ void load(FILE *fp)
        char buf[BUFSIZ], *p;
        size_t i = slidecount;
 
-       /* read each line from stdin and add it to the item list */
+       /* read each line from fp and add it to the item list */
        while (fgets(buf, sizeof(buf), fp)) {
                if ((i+1) * sizeof(*slides) >= size)
                        if (!(slides = realloc(slides, (size += BUFSIZ))))
@@ -454,7 +454,7 @@ void run()
 
 void usage()
 {
-       die("sent " VERSION " (c) 2015 markus.teich@stusta.mhn.de\n" \
+       die("sent " VERSION " (c) 2014-2015 markus.teich@stusta.mhn.de\n" \
        "usage: sent FILE1 [FILE2 ...]", argv0);
 }