Changeset 154 for trunk/tools


Ignore:
Timestamp:
Apr 10, 2013, 6:47:05 PM (12 years ago)
Author:
David Azarewicz
Message:

Begin adding user info output.
Added LVM support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/AddToFile.cmd

    r149 r154  
    4646
    4747  when (What='DATEYEAR') then do
    48     rc=lineout(OutFile, String||' '||SUBSTR(DATE('S'), 1, 4));
     48    rc=lineout(OutFile, String||' '||FORMAT(SUBSTR(DATE('S'), 1, 4)));
    4949    rc=lineout(OutFile);
    5050  end
    5151
    5252  when (What='DATEMONTH') then do
    53     rc=lineout(OutFile, String||' '||SUBSTR(DATE('S'), 5, 2));
     53    rc=lineout(OutFile, String||' '||FORMAT(SUBSTR(DATE('S'), 5, 2)));
    5454    rc=lineout(OutFile);
    5555  end
    5656
    5757  when (What='DATEDAY') then do
    58     rc=lineout(OutFile, String||' '||SUBSTR(DATE('S'), 7, 2));
     58    rc=lineout(OutFile, String||' '||FORMAT(SUBSTR(DATE('S'), 7, 2)));
    5959    rc=lineout(OutFile);
    6060  end
Note: See TracChangeset for help on using the changeset viewer.