Differences From Artifact [7ad6d8eebc]:
- File src/clearsign.c — part of check-in [a1814d5015] at 2011-02-12 13:38:05 on branch file-safety — This branch contains experimental changes attempting to address complaints that Fossil sometimes overwrites unmanaged files. In this checkin: Use file_delete() instead of unlink() everywhere. Add interfaces file_move() and file_dont_overwrite() but do not use those interfaces yet. (user: drh size: 1545) [more...]
To Artifact [5c9a45e9b1]:
- File src/clearsign.c — part of check-in [a496d8e88d] at 2012-03-29 14:54:45 on branch mgagnon_fix — Add vim modline everywhere (user: mgagnon size: 1587)
| ︙ | ︙ | |||
56 57 58 59 60 61 62 | } file_delete(zOut); file_delete(zIn); free(zOut); free(zIn); return rc; } | > > > > > | 56 57 58 59 60 61 62 63 64 65 66 67 | } file_delete(zOut); file_delete(zIn); free(zOut); free(zIn); return rc; } /* * vim:ts=2:sts=2:et:sw=2:ft=c */ |