Changeset 315

Show
Ignore:
Timestamp:
06/14/08 10:11:12 (6 months ago)
Author:
JarrettBillingsley
Message:

You can now actually append to files opened with the Append flag. Neat.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/v2/minid/iolib.d

    r309 r315  
    334334            s.access = FileConduit.Access.Read; 
    335335 
    336             if(mode & FileMode.Out
     336            if((mode & FileMode.Out) || (mode & FileMode.Append)
    337337                s.access |= FileConduit.Access.Write; 
    338338