aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelan <relan@users.noreply.github.com>2017-01-28 21:30:31 +0300
committerrelan <relan@users.noreply.github.com>2017-01-28 22:11:04 +0300
commit5925b60368626feb83e33dfb91f1b41fc314e078 (patch)
tree32bca4b60d5a392c517ef841a898a44a3568d2d9
parentfe052b1c4cbc693036e498f92cbb4a80ff18e983 (diff)
downloadandroid_external_exfat-5925b60368626feb83e33dfb91f1b41fc314e078.tar.gz
android_external_exfat-5925b60368626feb83e33dfb91f1b41fc314e078.tar.bz2
android_external_exfat-5925b60368626feb83e33dfb91f1b41fc314e078.zip
Update copyright years.
-rw-r--r--Makefile.am2
-rw-r--r--configure.ac2
-rw-r--r--dump/Makefile.am2
-rw-r--r--dump/main.c4
-rw-r--r--fsck/Makefile.am2
-rw-r--r--fsck/main.c4
-rw-r--r--fuse/Makefile.am2
-rw-r--r--fuse/main.c4
-rw-r--r--label/Makefile.am2
-rw-r--r--label/main.c4
-rw-r--r--libexfat/Makefile.am2
-rw-r--r--libexfat/byteorder.h2
-rw-r--r--libexfat/cluster.c2
-rw-r--r--libexfat/compiler.h2
-rw-r--r--libexfat/exfat.h2
-rw-r--r--libexfat/exfatfs.h2
-rw-r--r--libexfat/io.c2
-rw-r--r--libexfat/log.c2
-rw-r--r--libexfat/lookup.c2
-rw-r--r--libexfat/mount.c2
-rw-r--r--libexfat/node.c2
-rw-r--r--libexfat/platform.h2
-rw-r--r--libexfat/time.c2
-rw-r--r--libexfat/utf.c2
-rw-r--r--libexfat/utils.c2
-rw-r--r--mkfs/Makefile.am2
-rw-r--r--mkfs/cbm.c2
-rw-r--r--mkfs/cbm.h2
-rw-r--r--mkfs/fat.c2
-rw-r--r--mkfs/fat.h2
-rw-r--r--mkfs/main.c4
-rw-r--r--mkfs/mkexfat.c2
-rw-r--r--mkfs/mkexfat.h2
-rw-r--r--mkfs/rootdir.c2
-rw-r--r--mkfs/rootdir.h2
-rw-r--r--mkfs/uct.c2
-rw-r--r--mkfs/uct.h2
-rw-r--r--mkfs/uctc.c2
-rw-r--r--mkfs/uctc.h2
-rw-r--r--mkfs/vbr.c2
-rw-r--r--mkfs/vbr.h2
41 files changed, 46 insertions, 46 deletions
diff --git a/Makefile.am b/Makefile.am
index 34e41fa..aac263d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -3,7 +3,7 @@
# Automake source.
#
# Free exFAT implementation.
-# Copyright (C) 2010-2016 Andrew Nayenko
+# Copyright (C) 2010-2017 Andrew Nayenko
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/configure.ac b/configure.ac
index d9af4aa..7e26417 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@
# Autoconf source.
#
# Free exFAT implementation.
-# Copyright (C) 2010-2016 Andrew Nayenko
+# Copyright (C) 2010-2017 Andrew Nayenko
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/dump/Makefile.am b/dump/Makefile.am
index f9a79dd..fa95e2f 100644
--- a/dump/Makefile.am
+++ b/dump/Makefile.am
@@ -3,7 +3,7 @@
# Automake source.
#
# Free exFAT implementation.
-# Copyright (C) 2011-2016 Andrew Nayenko
+# Copyright (C) 2011-2017 Andrew Nayenko
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/dump/main.c b/dump/main.c
index fda5b9b..420a951 100644
--- a/dump/main.c
+++ b/dump/main.c
@@ -3,7 +3,7 @@
Prints detailed information about exFAT volume.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -226,7 +226,7 @@ int main(int argc, char* argv[])
break;
case 'V':
printf("dumpexfat %s\n", VERSION);
- puts("Copyright (C) 2011-2016 Andrew Nayenko");
+ puts("Copyright (C) 2011-2017 Andrew Nayenko");
return 0;
default:
usage(argv[0]);
diff --git a/fsck/Makefile.am b/fsck/Makefile.am
index dbb8121..0d15a19 100644
--- a/fsck/Makefile.am
+++ b/fsck/Makefile.am
@@ -3,7 +3,7 @@
# Automake source.
#
# Free exFAT implementation.
-# Copyright (C) 2011-2016 Andrew Nayenko
+# Copyright (C) 2011-2017 Andrew Nayenko
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/fsck/main.c b/fsck/main.c
index 67435cf..b413c58 100644
--- a/fsck/main.c
+++ b/fsck/main.c
@@ -3,7 +3,7 @@
exFAT file system checker.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -146,7 +146,7 @@ int main(int argc, char* argv[])
switch (opt)
{
case 'V':
- puts("Copyright (C) 2011-2016 Andrew Nayenko");
+ puts("Copyright (C) 2011-2017 Andrew Nayenko");
return 0;
default:
usage(argv[0]);
diff --git a/fuse/Makefile.am b/fuse/Makefile.am
index 8f69cf4..c9fdca6 100644
--- a/fuse/Makefile.am
+++ b/fuse/Makefile.am
@@ -3,7 +3,7 @@
# Automake source.
#
# Free exFAT implementation.
-# Copyright (C) 2010-2016 Andrew Nayenko
+# Copyright (C) 2010-2017 Andrew Nayenko
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/fuse/main.c b/fuse/main.c
index 51d2dfd..3c91b12 100644
--- a/fuse/main.c
+++ b/fuse/main.c
@@ -3,7 +3,7 @@
FUSE-based exFAT implementation. Requires FUSE 2.6 or later.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -528,7 +528,7 @@ int main(int argc, char* argv[])
break;
case 'V':
free(mount_options);
- puts("Copyright (C) 2010-2016 Andrew Nayenko");
+ puts("Copyright (C) 2010-2017 Andrew Nayenko");
return 0;
case 'v':
break;
diff --git a/label/Makefile.am b/label/Makefile.am
index c610f2f..0fa6c9f 100644
--- a/label/Makefile.am
+++ b/label/Makefile.am
@@ -3,7 +3,7 @@
# Automake source.
#
# Free exFAT implementation.
-# Copyright (C) 2011-2016 Andrew Nayenko
+# Copyright (C) 2011-2017 Andrew Nayenko
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/label/main.c b/label/main.c
index a083f30..7c2739a 100644
--- a/label/main.c
+++ b/label/main.c
@@ -3,7 +3,7 @@
Prints or changes exFAT volume label.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -34,7 +34,7 @@ int main(int argc, char* argv[])
if (strcmp(*pp, "-V") == 0)
{
printf("exfatlabel %s\n", VERSION);
- puts("Copyright (C) 2011-2016 Andrew Nayenko");
+ puts("Copyright (C) 2011-2017 Andrew Nayenko");
return 0;
}
diff --git a/libexfat/Makefile.am b/libexfat/Makefile.am
index 102d89d..08ed347 100644
--- a/libexfat/Makefile.am
+++ b/libexfat/Makefile.am
@@ -3,7 +3,7 @@
# Automake source.
#
# Free exFAT implementation.
-# Copyright (C) 2010-2016 Andrew Nayenko
+# Copyright (C) 2010-2017 Andrew Nayenko
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/libexfat/byteorder.h b/libexfat/byteorder.h
index e417ad6..173b250 100644
--- a/libexfat/byteorder.h
+++ b/libexfat/byteorder.h
@@ -3,7 +3,7 @@
Endianness stuff. exFAT uses little-endian byte order.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/cluster.c b/libexfat/cluster.c
index c8c88eb..1d39233 100644
--- a/libexfat/cluster.c
+++ b/libexfat/cluster.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/compiler.h b/libexfat/compiler.h
index b590d01..e4f40de 100644
--- a/libexfat/compiler.h
+++ b/libexfat/compiler.h
@@ -4,7 +4,7 @@
showstopper.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/exfat.h b/libexfat/exfat.h
index 9ae5e98..21b760e 100644
--- a/libexfat/exfat.h
+++ b/libexfat/exfat.h
@@ -4,7 +4,7 @@
implementation.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/exfatfs.h b/libexfat/exfatfs.h
index a4739d1..84c6f97 100644
--- a/libexfat/exfatfs.h
+++ b/libexfat/exfatfs.h
@@ -3,7 +3,7 @@
Definitions of structures and constants used in exFAT file system.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/io.c b/libexfat/io.c
index 7d80822..514383c 100644
--- a/libexfat/io.c
+++ b/libexfat/io.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/log.c b/libexfat/log.c
index e37b0d8..5d99d30 100644
--- a/libexfat/log.c
+++ b/libexfat/log.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/lookup.c b/libexfat/lookup.c
index feb5a22..4b27cc5 100644
--- a/libexfat/lookup.c
+++ b/libexfat/lookup.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/mount.c b/libexfat/mount.c
index f53b55a..f907f29 100644
--- a/libexfat/mount.c
+++ b/libexfat/mount.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/node.c b/libexfat/node.c
index 8e42c02..a3f00af 100644
--- a/libexfat/node.c
+++ b/libexfat/node.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/platform.h b/libexfat/platform.h
index 4c5a0df..b3505f4 100644
--- a/libexfat/platform.h
+++ b/libexfat/platform.h
@@ -4,7 +4,7 @@
same kernel can use different libc implementations.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/time.c b/libexfat/time.c
index 93c1d67..3ef99e8 100644
--- a/libexfat/time.c
+++ b/libexfat/time.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/utf.c b/libexfat/utf.c
index f410eb6..d8968db 100644
--- a/libexfat/utf.c
+++ b/libexfat/utf.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/libexfat/utils.c b/libexfat/utils.c
index 9e099a8..c080d4c 100644
--- a/libexfat/utils.c
+++ b/libexfat/utils.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2016 Andrew Nayenko
+ Copyright (C) 2010-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/Makefile.am b/mkfs/Makefile.am
index b411a96..f4a10cc 100644
--- a/mkfs/Makefile.am
+++ b/mkfs/Makefile.am
@@ -3,7 +3,7 @@
# Automake source.
#
# Free exFAT implementation.
-# Copyright (C) 2011-2016 Andrew Nayenko
+# Copyright (C) 2011-2017 Andrew Nayenko
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/mkfs/cbm.c b/mkfs/cbm.c
index 57e5784..fb854e7 100644
--- a/mkfs/cbm.c
+++ b/mkfs/cbm.c
@@ -3,7 +3,7 @@
Clusters Bitmap creation code.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/cbm.h b/mkfs/cbm.h
index cc5a7db..76a31a9 100644
--- a/mkfs/cbm.h
+++ b/mkfs/cbm.h
@@ -3,7 +3,7 @@
Clusters Bitmap creation code.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/fat.c b/mkfs/fat.c
index 0ca3f3a..be3a6c3 100644
--- a/mkfs/fat.c
+++ b/mkfs/fat.c
@@ -3,7 +3,7 @@
File Allocation Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/fat.h b/mkfs/fat.h
index fce809c..4a6e80c 100644
--- a/mkfs/fat.h
+++ b/mkfs/fat.h
@@ -3,7 +3,7 @@
File Allocation Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/main.c b/mkfs/main.c
index 78cba24..02ac9c7 100644
--- a/mkfs/main.c
+++ b/mkfs/main.c
@@ -3,7 +3,7 @@
Creates exFAT file system.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -228,7 +228,7 @@ int main(int argc, char* argv[])
}
break;
case 'V':
- puts("Copyright (C) 2011-2016 Andrew Nayenko");
+ puts("Copyright (C) 2011-2017 Andrew Nayenko");
return 0;
default:
usage(argv[0]);
diff --git a/mkfs/mkexfat.c b/mkfs/mkexfat.c
index 07a48d2..801f367 100644
--- a/mkfs/mkexfat.c
+++ b/mkfs/mkexfat.c
@@ -3,7 +3,7 @@
FS creation engine.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/mkexfat.h b/mkfs/mkexfat.h
index b15922c..e8e0a44 100644
--- a/mkfs/mkexfat.h
+++ b/mkfs/mkexfat.h
@@ -3,7 +3,7 @@
FS creation engine.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/rootdir.c b/mkfs/rootdir.c
index 8341039..a8cc834 100644
--- a/mkfs/rootdir.c
+++ b/mkfs/rootdir.c
@@ -3,7 +3,7 @@
Root directory creation code.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/rootdir.h b/mkfs/rootdir.h
index 26be1d6..70ad02d 100644
--- a/mkfs/rootdir.h
+++ b/mkfs/rootdir.h
@@ -3,7 +3,7 @@
Root directory creation code.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/uct.c b/mkfs/uct.c
index 7d708fb..a70e897 100644
--- a/mkfs/uct.c
+++ b/mkfs/uct.c
@@ -3,7 +3,7 @@
Upper Case Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/uct.h b/mkfs/uct.h
index 731f0cb..e705371 100644
--- a/mkfs/uct.h
+++ b/mkfs/uct.h
@@ -3,7 +3,7 @@
Upper Case Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/uctc.c b/mkfs/uctc.c
index 08da19c..7e52dee 100644
--- a/mkfs/uctc.c
+++ b/mkfs/uctc.c
@@ -3,7 +3,7 @@
Upper Case Table contents.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/uctc.h b/mkfs/uctc.h
index 7ca31e7..0100f7c 100644
--- a/mkfs/uctc.h
+++ b/mkfs/uctc.h
@@ -3,7 +3,7 @@
Upper Case Table declaration.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/vbr.c b/mkfs/vbr.c
index 481fd63..81ab2ba 100644
--- a/mkfs/vbr.c
+++ b/mkfs/vbr.c
@@ -3,7 +3,7 @@
Volume Boot Record creation code.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
diff --git a/mkfs/vbr.h b/mkfs/vbr.h
index 9cc038f..69b46c5 100644
--- a/mkfs/vbr.h
+++ b/mkfs/vbr.h
@@ -3,7 +3,7 @@
Volume Boot Record creation code.
Free exFAT implementation.
- Copyright (C) 2011-2016 Andrew Nayenko
+ Copyright (C) 2011-2017 Andrew Nayenko
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by