Ticket #458: ticket458.patch
| File ticket458.patch, 0.7 kB (added by Gregor, 2 years ago) |
|---|
Patch to fix truncation issue |
-
tango/io/FileConduit.d
old new 472 472 static const Flags Create = 473 473 [ 474 474 0, // open existing 475 O_CREAT ,// create always475 O_CREAT | O_TRUNC, // create always 476 476 O_TRUNC, // must exist 477 477 O_APPEND | O_CREAT, 478 478 ];










