aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelan <relan@users.noreply.github.com>2015-04-12 22:52:08 +0300
committerrelan <relan@users.noreply.github.com>2015-08-24 08:36:18 +0300
commitd3c8cf283fd7b9a2d78e1c4a7b2a53dd7b78d57d (patch)
tree07f50ea7c3ec3b3aa13d6f653c5141acc7f18ad6
parent969a279ff54b25b2aeb267bf8248711dd05b2ad6 (diff)
downloadandroid_external_exfat-d3c8cf283fd7b9a2d78e1c4a7b2a53dd7b78d57d.tar.gz
android_external_exfat-d3c8cf283fd7b9a2d78e1c4a7b2a53dd7b78d57d.tar.bz2
android_external_exfat-d3c8cf283fd7b9a2d78e1c4a7b2a53dd7b78d57d.zip
Update copyright years.
-rw-r--r--SConstruct2
-rw-r--r--dump/dumpexfat.82
-rw-r--r--dump/main.c4
-rw-r--r--fsck/exfatfsck.82
-rw-r--r--fsck/main.c4
-rw-r--r--fuse/main.c4
-rw-r--r--fuse/mount.exfat-fuse.82
-rw-r--r--label/exfatlabel.82
-rw-r--r--label/main.c4
-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--libexfat/version.h2
-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/mkexfatfs.82
-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
40 files changed, 45 insertions, 45 deletions
diff --git a/SConstruct b/SConstruct
index 51c9a4a..d9bca0a 100644
--- a/SConstruct
+++ b/SConstruct
@@ -3,7 +3,7 @@
# SConscript for all components.
#
# Free exFAT implementation.
-# Copyright (C) 2010-2014 Andrew Nayenko
+# Copyright (C) 2010-2015 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/dumpexfat.8 b/dump/dumpexfat.8
index 1228134..e69e317 100644
--- a/dump/dumpexfat.8
+++ b/dump/dumpexfat.8
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2011-2014 Andrew Nayenko
+.\" Copyright (C) 2011-2015 Andrew Nayenko
.\"
.TH DUMPEXFAT 8 "February 2011"
.SH NAME
diff --git a/dump/main.c b/dump/main.c
index 71711c1..b85d4a3 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-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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
@@ -167,7 +167,7 @@ int main(int argc, char* argv[])
used_sectors = true;
break;
case 'V':
- puts("Copyright (C) 2011-2014 Andrew Nayenko");
+ puts("Copyright (C) 2011-2015 Andrew Nayenko");
return 0;
default:
usage(argv[0]);
diff --git a/fsck/exfatfsck.8 b/fsck/exfatfsck.8
index 826abec..e950488 100644
--- a/fsck/exfatfsck.8
+++ b/fsck/exfatfsck.8
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2011-2014 Andrew Nayenko
+.\" Copyright (C) 2011-2015 Andrew Nayenko
.\"
.TH EXFATFSCK 8 "February 2011"
.SH NAME
diff --git a/fsck/main.c b/fsck/main.c
index 67920aa..3e60ac3 100644
--- a/fsck/main.c
+++ b/fsck/main.c
@@ -3,7 +3,7 @@
exFAT file system checker.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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
@@ -149,7 +149,7 @@ int main(int argc, char* argv[])
switch (opt)
{
case 'V':
- puts("Copyright (C) 2011-2014 Andrew Nayenko");
+ puts("Copyright (C) 2011-2015 Andrew Nayenko");
return 0;
default:
usage(argv[0]);
diff --git a/fuse/main.c b/fuse/main.c
index c660a82..52aad4b 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-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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
@@ -506,7 +506,7 @@ int main(int argc, char* argv[])
break;
case 'V':
free(mount_options);
- puts("Copyright (C) 2010-2014 Andrew Nayenko");
+ puts("Copyright (C) 2010-2015 Andrew Nayenko");
return 0;
case 'v':
break;
diff --git a/fuse/mount.exfat-fuse.8 b/fuse/mount.exfat-fuse.8
index 9607a3e..1cd2a0f 100644
--- a/fuse/mount.exfat-fuse.8
+++ b/fuse/mount.exfat-fuse.8
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2010-2014 Andrew Nayenko
+.\" Copyright (C) 2010-2015 Andrew Nayenko
.\"
.TH EXFAT-FUSE 8 "July 2010"
.SH NAME
diff --git a/label/exfatlabel.8 b/label/exfatlabel.8
index b427dec..bff6e79 100644
--- a/label/exfatlabel.8
+++ b/label/exfatlabel.8
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2011-2014 Andrew Nayenko
+.\" Copyright (C) 2011-2015 Andrew Nayenko
.\"
.TH EXFATLABEL 8 "February 2011"
.SH NAME
diff --git a/label/main.c b/label/main.c
index 33f0435..c50b769 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-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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
@@ -35,7 +35,7 @@ int main(int argc, char* argv[])
{
printf("exfatlabel %u.%u.%u\n", EXFAT_VERSION_MAJOR,
EXFAT_VERSION_MINOR, EXFAT_VERSION_PATCH);
- puts("Copyright (C) 2011-2014 Andrew Nayenko");
+ puts("Copyright (C) 2011-2015 Andrew Nayenko");
return 0;
}
diff --git a/libexfat/byteorder.h b/libexfat/byteorder.h
index dd039f2..f63c12a 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-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 1a4b53c..523e9fb 100644
--- a/libexfat/cluster.c
+++ b/libexfat/cluster.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 816289c..1a4742e 100644
--- a/libexfat/compiler.h
+++ b/libexfat/compiler.h
@@ -4,7 +4,7 @@
showstopper.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 6d9bcf1..9684914 100644
--- a/libexfat/exfat.h
+++ b/libexfat/exfat.h
@@ -4,7 +4,7 @@
implementation.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 fbec79f..7d8f8bf 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-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 683461b..3d7aaad 100644
--- a/libexfat/io.c
+++ b/libexfat/io.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 9c29550..fd8982b 100644
--- a/libexfat/log.c
+++ b/libexfat/log.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 51915e6..d5bb389 100644
--- a/libexfat/lookup.c
+++ b/libexfat/lookup.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 bb4dd09..6e7881c 100644
--- a/libexfat/mount.c
+++ b/libexfat/mount.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 ba5146a..912b4fc 100644
--- a/libexfat/node.c
+++ b/libexfat/node.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 0e5dc91..3a5b7a2 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-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 b264a99..45c4aff 100644
--- a/libexfat/time.c
+++ b/libexfat/time.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 70fa856..6f14882 100644
--- a/libexfat/utf.c
+++ b/libexfat/utf.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 a27ef49..388f360 100644
--- a/libexfat/utils.c
+++ b/libexfat/utils.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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/version.h b/libexfat/version.h
index 20c1147..dbfe6db 100644
--- a/libexfat/version.h
+++ b/libexfat/version.h
@@ -3,7 +3,7 @@
Version constants.
Free exFAT implementation.
- Copyright (C) 2010-2014 Andrew Nayenko
+ Copyright (C) 2010-2015 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 e30928c..a25b290 100644
--- a/mkfs/cbm.c
+++ b/mkfs/cbm.c
@@ -3,7 +3,7 @@
Clusters Bitmap creation code.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 f959124..414b0d7 100644
--- a/mkfs/cbm.h
+++ b/mkfs/cbm.h
@@ -3,7 +3,7 @@
Clusters Bitmap creation code.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 ff42bce..e5dbdce 100644
--- a/mkfs/fat.c
+++ b/mkfs/fat.c
@@ -3,7 +3,7 @@
File Allocation Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 bd30fe3..9370cf3 100644
--- a/mkfs/fat.h
+++ b/mkfs/fat.h
@@ -3,7 +3,7 @@
File Allocation Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 61d9a6d..c10edf2 100644
--- a/mkfs/main.c
+++ b/mkfs/main.c
@@ -3,7 +3,7 @@
Creates exFAT file system.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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
@@ -229,7 +229,7 @@ int main(int argc, char* argv[])
}
break;
case 'V':
- puts("Copyright (C) 2011-2014 Andrew Nayenko");
+ puts("Copyright (C) 2011-2015 Andrew Nayenko");
return 0;
default:
usage(argv[0]);
diff --git a/mkfs/mkexfat.c b/mkfs/mkexfat.c
index 8a4b6bf..cd164e9 100644
--- a/mkfs/mkexfat.c
+++ b/mkfs/mkexfat.c
@@ -3,7 +3,7 @@
FS creation engine.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 d143dd1..8d2b5e3 100644
--- a/mkfs/mkexfat.h
+++ b/mkfs/mkexfat.h
@@ -3,7 +3,7 @@
FS creation engine.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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/mkexfatfs.8 b/mkfs/mkexfatfs.8
index 8f5e53b..e339468 100644
--- a/mkfs/mkexfatfs.8
+++ b/mkfs/mkexfatfs.8
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2011-2014 Andrew Nayenko
+.\" Copyright (C) 2011-2015 Andrew Nayenko
.\"
.TH MKEXFATFS 8 "January 2011"
.SH NAME
diff --git a/mkfs/rootdir.c b/mkfs/rootdir.c
index 4b6446d..337e5be 100644
--- a/mkfs/rootdir.c
+++ b/mkfs/rootdir.c
@@ -3,7 +3,7 @@
Root directory creation code.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 ddf5f41..56db5b0 100644
--- a/mkfs/rootdir.h
+++ b/mkfs/rootdir.h
@@ -3,7 +3,7 @@
Root directory creation code.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 3355b61..d1deb2d 100644
--- a/mkfs/uct.c
+++ b/mkfs/uct.c
@@ -3,7 +3,7 @@
Upper Case Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 6f276de..3a08db9 100644
--- a/mkfs/uct.h
+++ b/mkfs/uct.h
@@ -3,7 +3,7 @@
Upper Case Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 b5aa17d..5849f37 100644
--- a/mkfs/uctc.c
+++ b/mkfs/uctc.c
@@ -3,7 +3,7 @@
Upper Case Table contents.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 c492ec2..3e200f1 100644
--- a/mkfs/uctc.h
+++ b/mkfs/uctc.h
@@ -3,7 +3,7 @@
Upper Case Table declaration.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 48346c5..de9fe09 100644
--- a/mkfs/vbr.c
+++ b/mkfs/vbr.c
@@ -3,7 +3,7 @@
Volume Boot Record creation code.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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 075938f..74e60e5 100644
--- a/mkfs/vbr.h
+++ b/mkfs/vbr.h
@@ -3,7 +3,7 @@
Volume Boot Record creation code.
Free exFAT implementation.
- Copyright (C) 2011-2014 Andrew Nayenko
+ Copyright (C) 2011-2015 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