Differences From Artifact [5b32138d43]:
- File appfsd.c — part of check-in [db5fcbef28] at 2014-11-07 12:26:49 on branch tcl-ops — Added basic write support (user: rkeene, size: 21884) [annotate] [blame] [check-ins using]
To Artifact [c5ca9c2598]:
- File appfsd.c — part of check-in [d836b9fc43] at 2014-11-07 13:19:35 on branch tcl-ops — Added more reliable write support (user: rkeene, size: 21952) [annotate] [blame] [check-ins using]
︙ | |||
639 640 641 642 643 644 645 646 647 648 649 650 651 652 | 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 | + + + + | } else { /* The file must already exist */ if (gpi_ret != 0) { return(gpi_ret); } mode = ""; if ((fi->flags & O_WRONLY) == O_WRONLY) { mode = "write"; } } if (pathinfo.type == APPFS_PATHTYPE_DIRECTORY) { return(-EISDIR); } interp = appfs_TclInterp(); |
︙ |