]> git.sven.stormbind.net Git - sven/exfat-utils.git/blobdiff - fsck/main.c
Imported Upstream version 1.2.1
[sven/exfat-utils.git] / fsck / main.c
index 67920aa61b6e018e871231993f8fc8fee7291669..ded76b20c2ef78bda2ccebf5f0455db03e8b30fa 100644 (file)
@@ -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
        51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */
 
+#include <exfat.h>
 #include <stdio.h>
 #include <string.h>
-#include <exfat.h>
-#include <exfatfs.h>
 #include <inttypes.h>
 #include <unistd.h>
 
@@ -141,15 +140,14 @@ int main(int argc, char* argv[])
        const char* spec = NULL;
        struct exfat ef;
 
-       printf("exfatfsck %u.%u.%u\n",
-                       EXFAT_VERSION_MAJOR, EXFAT_VERSION_MINOR, EXFAT_VERSION_PATCH);
+       printf("exfatfsck %s\n", VERSION);
 
        while ((opt = getopt(argc, argv, "V")) != -1)
        {
                switch (opt)
                {
                case 'V':
-                       puts("Copyright (C) 2011-2014  Andrew Nayenko");
+                       puts("Copyright (C) 2011-2015  Andrew Nayenko");
                        return 0;
                default:
                        usage(argv[0]);