# # # patch "ChangeLog" # from [24a84b01abda76c39996dccd9d05af283f154614] # to [46075f7db869adbdb4f6c716015b130dc454932f] # # patch "work.cc" # from [39e5c9ecd7f5209dbcbb7e631d6fc044296a4a67] # to [63bf5894fb6781a369c9d449fbb6c5354730367b] # ============================================================ --- ChangeLog 24a84b01abda76c39996dccd9d05af283f154614 +++ ChangeLog 46075f7db869adbdb4f6c716015b130dc454932f @@ -1,3 +1,8 @@ +2006-02-25 Nathaniel Smith + + * work.cc (attach_node): This code should use path_exists, not + file_exists. + 2006-02-24 Timothy Brownawell * netcmd.cc: Ignore protocol version field on usher_cmd packets. It ============================================================ --- work.cc 39e5c9ecd7f5209dbcbb7e631d6fc044296a4a67 +++ work.cc 63bf5894fb6781a369c9d449fbb6c5354730367b @@ -807,7 +807,7 @@ // Possibly just write data out into the workspace, if we're doing // a file-create (not a dir-create or file/dir rename). - if (!file_exists(src_pth)) + if (!path_exists(src_pth)) { std::map::const_iterator i = written_content.find(src_pth);