OSDN Git Service

Fix copyright years.
authorresver <resver@60bc1c72-a15a-11de-b98f-4500b42dc123>
Tue, 1 May 2012 09:46:02 +0000 (09:46 +0000)
committerresver <resver@60bc1c72-a15a-11de-b98f-4500b42dc123>
Tue, 1 May 2012 09:46:02 +0000 (09:46 +0000)
git-svn-id: http://exfat.googlecode.com/svn/trunk@281 60bc1c72-a15a-11de-b98f-4500b42dc123

30 files changed:
dump/main.c
fsck/main.c
fuse/main.c
label/main.c
libexfat/byteorder.h
libexfat/cluster.c
libexfat/exfat.h
libexfat/exfatfs.h
libexfat/io.c
libexfat/log.c
libexfat/lookup.c
libexfat/mount.c
libexfat/node.c
libexfat/time.c
libexfat/utf.c
libexfat/utils.c
libexfat/version.h
mkfs/cbm.c
mkfs/cbm.h
mkfs/fat.c
mkfs/fat.h
mkfs/main.c
mkfs/mkexfat.h
mkfs/rootdir.c
mkfs/rootdir.h
mkfs/uct.c
mkfs/uct.h
mkfs/uctc.h
mkfs/vbr.c
mkfs/vbr.h

index cd424d9..1536f81 100644 (file)
@@ -2,7 +2,7 @@
        main.c (08.11.10)
        Prints detailed information about exFAT volume.
 
        main.c (08.11.10)
        Prints detailed information about exFAT volume.
 
-       Copyright (C) 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
@@ -162,7 +162,7 @@ int main(int argc, char* argv[])
                        used_sectors = 1;
                else if (strcmp(*pp, "-v") == 0)
                {
                        used_sectors = 1;
                else if (strcmp(*pp, "-v") == 0)
                {
-                       puts("Copyright (C) 2010  Andrew Nayenko");
+                       puts("Copyright (C) 2011, 2012  Andrew Nayenko");
                        return 0;
                }
                else if (spec == NULL)
                        return 0;
                }
                else if (spec == NULL)
index 7ad5b26..26ef2b2 100644 (file)
@@ -2,7 +2,7 @@
        main.c (02.09.09)
        exFAT file system checker.
 
        main.c (02.09.09)
        exFAT file system checker.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
@@ -133,7 +133,7 @@ int main(int argc, char* argv[])
        {
                if (strcmp(*pp, "-v") == 0)
                {
        {
                if (strcmp(*pp, "-v") == 0)
                {
-                       puts("Copyright (C) 2009  Andrew Nayenko");
+                       puts("Copyright (C) 2011, 2012  Andrew Nayenko");
                        return 0;
                }
                else if (spec == NULL)
                        return 0;
                }
                else if (spec == NULL)
index 9155912..2be54e2 100644 (file)
@@ -2,7 +2,7 @@
        main.c (01.09.09)
        FUSE-based exFAT implementation. Requires FUSE 2.6 or later.
 
        main.c (01.09.09)
        FUSE-based exFAT implementation. Requires FUSE 2.6 or later.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
@@ -401,7 +401,7 @@ int main(int argc, char* argv[])
                else if (strcmp(*pp, "-v") == 0)
                {
                        free(mount_options);
                else if (strcmp(*pp, "-v") == 0)
                {
                        free(mount_options);
-                       puts("Copyright (C) 2009  Andrew Nayenko");
+                       puts("Copyright (C) 2010-2012  Andrew Nayenko");
                        return 0;
                }
                else if (spec == NULL)
                        return 0;
                }
                else if (spec == NULL)
index b4ee541..c21c757 100644 (file)
@@ -2,7 +2,7 @@
        label.c (20.01.11)
        Prints or changes exFAT volume label.
 
        label.c (20.01.11)
        Prints or changes exFAT volume label.
 
-       Copyright (C) 2011  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
@@ -33,7 +33,7 @@ int main(int argc, char* argv[])
                {
                        printf("exfatlabel %u.%u.%u\n", EXFAT_VERSION_MAJOR,
                                        EXFAT_VERSION_MINOR, EXFAT_VERSION_PATCH);
                {
                        printf("exfatlabel %u.%u.%u\n", EXFAT_VERSION_MAJOR,
                                        EXFAT_VERSION_MINOR, EXFAT_VERSION_PATCH);
-                       puts("Copyright (C) 2011  Andrew Nayenko");
+                       puts("Copyright (C) 2011, 2012  Andrew Nayenko");
                        return 0;
                }
 
                        return 0;
                }
 
index 6b38646..abcf811 100644 (file)
@@ -2,7 +2,7 @@
        byteorder.h (12.01.10)
        Endianness stuff. exFAT uses little-endian byte order.
 
        byteorder.h (12.01.10)
        Endianness stuff. exFAT uses little-endian byte order.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index 1257c7a..0418932 100644 (file)
@@ -2,7 +2,7 @@
        cluster.c (03.09.09)
        exFAT file system implementation library.
 
        cluster.c (03.09.09)
        exFAT file system implementation library.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index 2a831a3..3e8b71a 100644 (file)
@@ -3,7 +3,7 @@
        Definitions of structures and constants used in exFAT file system
        implementation.
 
        Definitions of structures and constants used in exFAT file system
        implementation.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index 78a62e6..5a8e39f 100644 (file)
@@ -2,7 +2,7 @@
        exfatfs.h (29.08.09)
        Definitions of structures and constants used in exFAT file system.
 
        exfatfs.h (29.08.09)
        Definitions of structures and constants used in exFAT file system.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index c9c1e2b..609c15d 100644 (file)
@@ -2,7 +2,7 @@
        io.c (02.09.09)
        exFAT file system implementation library.
 
        io.c (02.09.09)
        exFAT file system implementation library.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index ef80bc8..8b589b4 100644 (file)
@@ -2,7 +2,7 @@
        log.c (02.09.09)
        exFAT file system implementation library.
 
        log.c (02.09.09)
        exFAT file system implementation library.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index 619dcea..d650976 100644 (file)
@@ -2,7 +2,7 @@
        lookup.c (02.09.09)
        exFAT file system implementation library.
 
        lookup.c (02.09.09)
        exFAT file system implementation library.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index 521b539..a62466b 100644 (file)
@@ -2,7 +2,7 @@
        mount.c (22.10.09)
        exFAT file system implementation library.
 
        mount.c (22.10.09)
        exFAT file system implementation library.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index 2ae724d..4cbb3e2 100644 (file)
@@ -2,7 +2,7 @@
        node.c (09.10.09)
        exFAT file system implementation library.
 
        node.c (09.10.09)
        exFAT file system implementation library.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index 2e22a99..890930e 100644 (file)
@@ -2,7 +2,7 @@
        time.c (03.02.12)
        exFAT file system implementation library.
 
        time.c (03.02.12)
        exFAT file system implementation library.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index 3f0dc19..27c32b6 100644 (file)
@@ -2,7 +2,7 @@
        utf.c (13.09.09)
        exFAT file system implementation library.
 
        utf.c (13.09.09)
        exFAT file system implementation library.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index 59319ae..7c47f4d 100644 (file)
@@ -2,7 +2,7 @@
        utils.c (04.09.09)
        exFAT file system implementation library.
 
        utils.c (04.09.09)
        exFAT file system implementation library.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index aa636f8..aace872 100644 (file)
@@ -2,7 +2,7 @@
        version.h (12.06.10)
        Version constants.
 
        version.h (12.06.10)
        Version constants.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2010-2012  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
 
        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
index 1a79a6b..01f4937 100644 (file)
@@ -2,7 +2,7 @@
        cbm.c (09.11.10)
        Clusters Bitmap creation code.
 
        cbm.c (09.11.10)
        Clusters Bitmap creation code.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index b6007e0..2c30942 100644 (file)
@@ -2,7 +2,7 @@
        cbm.h (09.11.10)
        Clusters Bitmap creation code.
 
        cbm.h (09.11.10)
        Clusters Bitmap creation code.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index 21d74d4..d1433a8 100644 (file)
@@ -2,7 +2,7 @@
        fat.c (09.11.10)
        File Allocation Table creation code.
 
        fat.c (09.11.10)
        File Allocation Table creation code.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index 01b5c20..741474f 100644 (file)
@@ -2,7 +2,7 @@
        fat.h (09.11.10)
        File Allocation Table creation code.
 
        fat.h (09.11.10)
        File Allocation Table creation code.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index e7daf34..5bbebdc 100644 (file)
@@ -2,7 +2,7 @@
        main.c (15.08.10)
        Creates exFAT file system.
 
        main.c (15.08.10)
        Creates exFAT file system.
 
-       Copyright (C) 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
@@ -430,7 +430,7 @@ int main(int argc, char* argv[])
                }
                else if (strcmp(*pp, "-v") == 0)
                {
                }
                else if (strcmp(*pp, "-v") == 0)
                {
-                       puts("Copyright (C) 2010  Andrew Nayenko");
+                       puts("Copyright (C) 2011, 2012  Andrew Nayenko");
                        return 0;
                }
                else if (spec == NULL)
                        return 0;
                }
                else if (spec == NULL)
index dbaeb8d..be3f487 100644 (file)
@@ -2,7 +2,7 @@
        mkexfat.h (09.11.10)
        Common declarations.
 
        mkexfat.h (09.11.10)
        Common declarations.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index 547ca3b..28cc0d2 100644 (file)
@@ -2,7 +2,7 @@
        rootdir.c (09.11.10)
        Root directory creation code.
 
        rootdir.c (09.11.10)
        Root directory creation code.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index f3df708..4a3f6e7 100644 (file)
@@ -2,7 +2,7 @@
        rootdir.h (09.11.10)
        Root directory creation code.
 
        rootdir.h (09.11.10)
        Root directory creation code.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index 886bd32..f2c7792 100644 (file)
@@ -2,7 +2,7 @@
        uct.c (09.11.10)
        Upper Case Table creation code.
 
        uct.c (09.11.10)
        Upper Case Table creation code.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index b35a612..4754de4 100644 (file)
@@ -2,7 +2,7 @@
        uct.h (09.11.10)
        Upper Case Table creation code.
 
        uct.h (09.11.10)
        Upper Case Table creation code.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index 460759a..fd025bd 100644 (file)
@@ -2,7 +2,7 @@
        uctc.h (30.10.10)
        Upper Case Table contents.
 
        uctc.h (30.10.10)
        Upper Case Table contents.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index 4580565..6d26e4d 100644 (file)
@@ -2,7 +2,7 @@
        vbr.c (09.11.10)
        Volume Boot Record creation code.
 
        vbr.c (09.11.10)
        Volume Boot Record creation code.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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
index d4cd56d..497c923 100644 (file)
@@ -2,7 +2,7 @@
        vbr.h (09.11.10)
        Volume Boot Record creation code.
 
        vbr.h (09.11.10)
        Volume Boot Record creation code.
 
-       Copyright (C) 2009, 2010  Andrew Nayenko
+       Copyright (C) 2011, 2012  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
 
        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