Author: hbelusca
Date: Sun May  5 10:18:52 2013
New Revision: 58939

URL: http://svn.reactos.org/svn/reactos?rev=58939&view=rev
Log:
[CDMAKE]
Reset the "volume expiration date" and the "volume effective date". They are 
not used.
See http://wiki.osdev.org/ISO_9660#The_Primary_Volume_Descriptor for more 
information.

Modified:
    trunk/reactos/tools/cdmake/cdmake.c

Modified: trunk/reactos/tools/cdmake/cdmake.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/cdmake/cdmake.c?rev=58939&r1=58938&r2=58939&view=diff
==============================================================================
--- trunk/reactos/tools/cdmake/cdmake.c [iso-8859-1] (original)
+++ trunk/reactos/tools/cdmake/cdmake.c [iso-8859-1] Sun May  5 10:18:52 2013
@@ -1165,9 +1165,9 @@
   write_byte(0);
   write_string(timestring);  // most recent modification
   write_byte(0);
-  write_string(timestring);  // volume expires
+  write_string("0000000000000000");  // volume expires
   write_byte(0);
-  write_string(timestring);  // volume is effective
+  write_string("0000000000000000");  // volume is effective
   write_byte(0);
   write_byte(1);
   write_byte(0);
@@ -1221,13 +1221,13 @@
     write_block(37, ' ');       // abstract file identifier
     write_block(37, ' ');       // bibliographic file identifier
     write_string(timestring);  // volume creation
-    write_byte(48);
+    write_byte(0);
     write_string(timestring);  // most recent modification
-    write_byte(48);
-    write_string(timestring);  // volume expires
-    write_byte(48);
-    write_string(timestring);  // volume is effective
-    write_byte(48);
+    write_byte(0);
+    write_string("0000000000000000");  // volume expires
+    write_byte(0);
+    write_string("0000000000000000");  // volume is effective
+    write_byte(0);
     write_byte(1);
     write_byte(0);
     fill_sector();


Reply via email to