aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrelan <relan@users.noreply.github.com>2014-07-08 12:54:13 +0000
committerrelan <relan@users.noreply.github.com>2015-08-24 08:26:17 +0300
commitaed66bc492160fa4ecc03163fdbc68e11ea6f3fd (patch)
tree3251e84bf037fd327654b0fe7396f512dc13f719
parent5f362f696c11e497421e0ca4dfd66330bc512263 (diff)
downloadandroid_external_exfat-aed66bc492160fa4ecc03163fdbc68e11ea6f3fd.tar.gz
android_external_exfat-aed66bc492160fa4ecc03163fdbc68e11ea6f3fd.tar.bz2
android_external_exfat-aed66bc492160fa4ecc03163fdbc68e11ea6f3fd.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 dc31c21..6fadd8c 100644
--- a/SConstruct
+++ b/SConstruct
@@ -3,7 +3,7 @@
# SConscript for all components.
#
# Free exFAT implementation.
-# Copyright (C) 2010-2013 Andrew Nayenko
+# Copyright (C) 2010-2014 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 7fea065..1228134 100644
--- a/dump/dumpexfat.8
+++ b/dump/dumpexfat.8
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2011 Andrew Nayenko
+.\" Copyright (C) 2011-2014 Andrew Nayenko
.\"
.TH DUMPEXFAT 8 "February 2011"
.SH NAME
diff --git a/dump/main.c b/dump/main.c
index d91b9a0..71711c1 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-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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-2013 Andrew Nayenko");
+ puts("Copyright (C) 2011-2014 Andrew Nayenko");
return 0;
default:
usage(argv[0]);
diff --git a/fsck/exfatfsck.8 b/fsck/exfatfsck.8
index 40d7c85..826abec 100644
--- a/fsck/exfatfsck.8
+++ b/fsck/exfatfsck.8
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2011 Andrew Nayenko
+.\" Copyright (C) 2011-2014 Andrew Nayenko
.\"
.TH EXFATFSCK 8 "February 2011"
.SH NAME
diff --git a/fsck/main.c b/fsck/main.c
index 30bc4c8..67920aa 100644
--- a/fsck/main.c
+++ b/fsck/main.c
@@ -3,7 +3,7 @@
exFAT file system checker.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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-2013 Andrew Nayenko");
+ puts("Copyright (C) 2011-2014 Andrew Nayenko");
return 0;
default:
usage(argv[0]);
diff --git a/fuse/main.c b/fuse/main.c
index 1948a16..58b7b2f 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-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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
@@ -485,7 +485,7 @@ int main(int argc, char* argv[])
break;
case 'V':
free(mount_options);
- puts("Copyright (C) 2010-2013 Andrew Nayenko");
+ puts("Copyright (C) 2010-2014 Andrew Nayenko");
return 0;
case 'v':
break;
diff --git a/fuse/mount.exfat-fuse.8 b/fuse/mount.exfat-fuse.8
index b7e9d56..79d2f3f 100644
--- a/fuse/mount.exfat-fuse.8
+++ b/fuse/mount.exfat-fuse.8
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2010 Andrew Nayenko
+.\" Copyright (C) 2010-2014 Andrew Nayenko
.\"
.TH EXFAT-FUSE 8 "July 2010"
.SH NAME
diff --git a/label/exfatlabel.8 b/label/exfatlabel.8
index dd2ef1c..b427dec 100644
--- a/label/exfatlabel.8
+++ b/label/exfatlabel.8
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2011 Andrew Nayenko
+.\" Copyright (C) 2011-2014 Andrew Nayenko
.\"
.TH EXFATLABEL 8 "February 2011"
.SH NAME
diff --git a/label/main.c b/label/main.c
index 2e5b5ca..33f0435 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-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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-2013 Andrew Nayenko");
+ puts("Copyright (C) 2011-2014 Andrew Nayenko");
return 0;
}
diff --git a/libexfat/byteorder.h b/libexfat/byteorder.h
index a371c0c..dd039f2 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-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 8c61e45..1a4b53c 100644
--- a/libexfat/cluster.c
+++ b/libexfat/cluster.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 f7d881a..816289c 100644
--- a/libexfat/compiler.h
+++ b/libexfat/compiler.h
@@ -4,7 +4,7 @@
showstopper.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 3c5788d..2a881e4 100644
--- a/libexfat/exfat.h
+++ b/libexfat/exfat.h
@@ -4,7 +4,7 @@
implementation.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 503f251..fbec79f 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-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 9743c4e..683461b 100644
--- a/libexfat/io.c
+++ b/libexfat/io.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 7e541aa..9c29550 100644
--- a/libexfat/log.c
+++ b/libexfat/log.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 00cd533..51915e6 100644
--- a/libexfat/lookup.c
+++ b/libexfat/lookup.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 0823e7e..2ebf436 100644
--- a/libexfat/mount.c
+++ b/libexfat/mount.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 96c312a..ba5146a 100644
--- a/libexfat/node.c
+++ b/libexfat/node.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 d22652b..0e5dc91 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-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 43c5fa4..b264a99 100644
--- a/libexfat/time.c
+++ b/libexfat/time.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 3b7e26b..70fa856 100644
--- a/libexfat/utf.c
+++ b/libexfat/utf.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 8b6aaf9..a27ef49 100644
--- a/libexfat/utils.c
+++ b/libexfat/utils.c
@@ -3,7 +3,7 @@
exFAT file system implementation library.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 062fa04..4da19b6 100644
--- a/libexfat/version.h
+++ b/libexfat/version.h
@@ -3,7 +3,7 @@
Version constants.
Free exFAT implementation.
- Copyright (C) 2010-2013 Andrew Nayenko
+ Copyright (C) 2010-2014 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 5d1e63f..e3e9dd2 100644
--- a/mkfs/cbm.c
+++ b/mkfs/cbm.c
@@ -3,7 +3,7 @@
Clusters Bitmap creation code.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 b9d2850..f959124 100644
--- a/mkfs/cbm.h
+++ b/mkfs/cbm.h
@@ -3,7 +3,7 @@
Clusters Bitmap creation code.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 7c036b8..ff42bce 100644
--- a/mkfs/fat.c
+++ b/mkfs/fat.c
@@ -3,7 +3,7 @@
File Allocation Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 1327f0a..bd30fe3 100644
--- a/mkfs/fat.h
+++ b/mkfs/fat.h
@@ -3,7 +3,7 @@
File Allocation Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 12d8f42..61d9a6d 100644
--- a/mkfs/main.c
+++ b/mkfs/main.c
@@ -3,7 +3,7 @@
Creates exFAT file system.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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-2013 Andrew Nayenko");
+ puts("Copyright (C) 2011-2014 Andrew Nayenko");
return 0;
default:
usage(argv[0]);
diff --git a/mkfs/mkexfat.c b/mkfs/mkexfat.c
index ebda920..8a4b6bf 100644
--- a/mkfs/mkexfat.c
+++ b/mkfs/mkexfat.c
@@ -3,7 +3,7 @@
FS creation engine.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 61428c5..d143dd1 100644
--- a/mkfs/mkexfat.h
+++ b/mkfs/mkexfat.h
@@ -3,7 +3,7 @@
FS creation engine.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 3436fda..8f5e53b 100644
--- a/mkfs/mkexfatfs.8
+++ b/mkfs/mkexfatfs.8
@@ -1,4 +1,4 @@
-.\" Copyright (C) 2011 Andrew Nayenko
+.\" Copyright (C) 2011-2014 Andrew Nayenko
.\"
.TH MKEXFATFS 8 "January 2011"
.SH NAME
diff --git a/mkfs/rootdir.c b/mkfs/rootdir.c
index ccecf66..4b6446d 100644
--- a/mkfs/rootdir.c
+++ b/mkfs/rootdir.c
@@ -3,7 +3,7 @@
Root directory creation code.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 2d1d345..ddf5f41 100644
--- a/mkfs/rootdir.h
+++ b/mkfs/rootdir.h
@@ -3,7 +3,7 @@
Root directory creation code.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 4c2fef3..3355b61 100644
--- a/mkfs/uct.c
+++ b/mkfs/uct.c
@@ -3,7 +3,7 @@
Upper Case Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 ef33392..6f276de 100644
--- a/mkfs/uct.h
+++ b/mkfs/uct.h
@@ -3,7 +3,7 @@
Upper Case Table creation code.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 1ee8efe..b5aa17d 100644
--- a/mkfs/uctc.c
+++ b/mkfs/uctc.c
@@ -3,7 +3,7 @@
Upper Case Table contents.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 3e7dee0..c492ec2 100644
--- a/mkfs/uctc.h
+++ b/mkfs/uctc.h
@@ -3,7 +3,7 @@
Upper Case Table declaration.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 da5be7b..48346c5 100644
--- a/mkfs/vbr.c
+++ b/mkfs/vbr.c
@@ -3,7 +3,7 @@
Volume Boot Record creation code.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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 fec88bc..075938f 100644
--- a/mkfs/vbr.h
+++ b/mkfs/vbr.h
@@ -3,7 +3,7 @@
Volume Boot Record creation code.
Free exFAT implementation.
- Copyright (C) 2011-2013 Andrew Nayenko
+ Copyright (C) 2011-2014 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