Commit Briefs

Stefan Sperling

fix replacing symlinks with files

And add a test case which verifies that the inverse also works, i.e. a symlink being replaced with a regular file. problem reported and fix tested by jrick





Stefan Sperling

avoid got_repo_map_path() in 'got blame'

'got blame' does not need access to the work tree. So far the work tree was completely hidden with unveil(). We must now expose the work tree while resolving the path, so unveil() calls are shuffled around slightly. Failing realpath() calls would mess with path resolution otherwise. There's a bug in got_worktree_resolve_path() where it failed to canonicalize a path constructed from a user-specified path that does not exist on disk. Note that this path falls into strncmp() a few lines down. I am fixing this by adding canonicalization. Generally, joining paths with asprintf() and comparing paths with strncmp() is fragile. A more general solution might be needed but I am leaving that for another day. ok naddy


Christian Weisgerber

convert all remaining instances of chmod(2) to fchmod(2)

ok stsp


Christian Weisgerber

indentation fixes




Stefan Sperling

use got_path_dirname() in remove_ondisk_file(); avoids const dirname(3)

ok naddy


Stefan Sperling

use got_path_dirname() in install_blob() to avoid const dirname(3)

ok naddy


Stefan Sperling

use got_path_dirname() in install_symlink() to avoid const dirname(3)

ok naddy


Stefan Sperling

use got_path_dirname() in is_bad_symlink_target()

ok naddy