Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make blob_read_link() C89-compatible on Unix again. |
---|---|
Timelines: | family | ancestors | descendants | both | symlinks |
Files: | files | file ages | folders |
SHA1: |
034819087de9ca37a52d696ce865f60b |
User & Date: | dmitry 2011-08-28 11:22:36.021 |
Context
2011-08-31
| ||
09:55 | Merge latest trunk. check-in: 40ed431ca5 user: dmitry tags: symlinks | |
2011-08-28
| ||
11:22 | Make blob_read_link() C89-compatible on Unix again. check-in: 034819087d user: dmitry tags: symlinks | |
11:01 | Use file_delete() instead of unlink() in vfile_to_disk(). check-in: 08311ffc6a user: dmitry tags: symlinks | |
Changes
Changes to src/blob.c.
︙ | |||
709 710 711 712 713 714 715 | 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 | - + + | ** Any prior content of the blob is discarded, not freed. ** ** Returns length of destination path. ** ** On windows, zeros blob and returns 0. */ int blob_read_link(Blob *pBlob, const char *zFilename){ |
︙ |