misc/libphysfs/archiver_grp.c
changeset 12213 bb5522e88ab2
parent 8524 a65e9bcf0a03
--- a/misc/libphysfs/archiver_grp.c	Mon Apr 10 09:05:16 2017 -0400
+++ b/misc/libphysfs/archiver_grp.c	Mon Apr 10 12:06:43 2017 -0400
@@ -87,24 +87,26 @@
 
 const PHYSFS_Archiver __PHYSFS_Archiver_GRP =
 {
+    CURRENT_PHYSFS_ARCHIVER_API_VERSION,
     {
         "GRP",
         "Build engine Groupfile format",
         "Ryan C. Gordon <icculus@icculus.org>",
-        "http://icculus.org/physfs/",
+        "https://icculus.org/physfs/",
+        0,  /* supportsSymlinks */
     },
-    GRP_openArchive,        /* openArchive() method    */
-    UNPK_enumerateFiles,    /* enumerateFiles() method */
-    UNPK_openRead,          /* openRead() method       */
-    UNPK_openWrite,         /* openWrite() method      */
-    UNPK_openAppend,        /* openAppend() method     */
-    UNPK_remove,            /* remove() method         */
-    UNPK_mkdir,             /* mkdir() method          */
-    UNPK_closeArchive,      /* closeArchive() method   */
-    UNPK_stat               /* stat() method           */
+    GRP_openArchive,
+    UNPK_enumerateFiles,
+    UNPK_openRead,
+    UNPK_openWrite,
+    UNPK_openAppend,
+    UNPK_remove,
+    UNPK_mkdir,
+    UNPK_stat,
+    UNPK_closeArchive
 };
 
 #endif  /* defined PHYSFS_SUPPORTS_GRP */
 
-/* end of grp.c ... */
+/* end of archiver_grp.c ... */