Support for multisession CD Extra Discs courtesy of Patrick

Guimond.

testiso9660.c: remove ltime comparison check. :-(
This commit is contained in:
rocky
2007-09-28 00:25:43 +00:00
parent f817761954
commit b6aa3db584
3 changed files with 49 additions and 35 deletions

View File

@@ -1,5 +1,5 @@
/*
$Id: testiso9660.c,v 1.18 2007/07/19 02:03:39 rocky Exp $
$Id: testiso9660.c,v 1.19 2007/09/28 00:25:43 rocky Exp $
Copyright (C) 2003, 2006, 2007 Rocky Bernstein <rocky@gnu.org>
@@ -274,13 +274,15 @@ main (int argc, const char *argv[])
printf("Problem running iso966)get_ltime\n");
return 44;
}
#ifdef FIXED
t2 = mktime(&tm);
if ( t1 != t2 && ! time_compare(p_tm, &tm) ) {
printf("local time retrieved with iso9660_get_ltime() not\n");
printf("same as that set with iso9660_set_ltime().\n");
return 45;
}
#endif
p_tm = gmtime(&now);
t1 = mktime(p_tm);