]> wimlib.net Git - wimlib/blobdiff - src/sha1.c
Add 2013 to copyright notices
[wimlib] / src / sha1.c
index 05c4ab890bd31baca310a4171abf95f6db19938e..6e7f16c3a3d2b9c80bf2f392413673d3c5268d43 100644 (file)
@@ -5,7 +5,7 @@
  */
 
 /*
- * Copyright (C) 2012 Eric Biggers
+ * Copyright (C) 2012, 2013 Biggers
  *
  * This file is part of wimlib, a library for working with WIM files.
  *
@@ -222,9 +222,8 @@ static int sha1_stream(FILE *fp, u8 md[SHA1_HASH_SIZE])
 
 }
 
-/* Calculates the SHA1 message digest given the name of a file.  @md must point
- * to a buffer of length 20 bytes into which the message digest is written.
- */
+/* Calculates the SHA1 message digest of a file.  @md must point to a buffer of
+ * length 20 bytes into which the message digest is written. */
 int sha1sum(const char *filename, u8 md[SHA1_HASH_SIZE])
 {
        FILE *fp;