--- a/src/archiver_hog.c Sun Aug 22 03:43:22 2010 -0400
+++ b/src/archiver_hog.c Sun Aug 22 20:20:04 2010 -0400
@@ -402,21 +402,6 @@
} /* HOG_isSymLink */
-static PHYSFS_sint64 HOG_getLastModTime(dvoid *opaque,
- const char *name,
- int *fileExists)
-{
- HOGinfo *info = ((HOGinfo *) opaque);
- PHYSFS_sint64 retval = -1;
-
- *fileExists = (hog_find_entry(info, name) != NULL);
- if (*fileExists) /* use time of HOG itself in the physical filesystem. */
- retval = info->last_mod_time;
-
- return retval;
-} /* HOG_getLastModTime */
-
-
static fvoid *HOG_openRead(dvoid *opaque, const char *fnm, int *fileExists)
{
HOGinfo *info = ((HOGinfo *) opaque);
@@ -507,7 +492,6 @@
HOG_exists, /* exists() method */
HOG_isDirectory, /* isDirectory() method */
HOG_isSymLink, /* isSymLink() method */
- HOG_getLastModTime, /* getLastModTime() method */
HOG_openRead, /* openRead() method */
HOG_openWrite, /* openWrite() method */
HOG_openAppend, /* openAppend() method */