]> gitweb.michael.orlitzky.com - apply-default-acl.git/shortlog
apply-default-acl.git
2018-03-02 Michael Orlitzkyautotools: replace my busted header checks with somethi... v0.3.0
2018-03-02 Michael Orlitzkyconfigure.ac: fix header name sys/libacl.h -> acl/libacl.h.
2018-03-02 Michael Orlitzkyconfigure.ac: use AC_HEADER_DIRENT to check for dirent.h.
2018-03-02 Michael Orlitzkyconfigure.ac: remove check for the (not used) sys/types...
2018-03-02 Michael Orlitzkyconfigure.ac: remove the check for the (not used) ftw...
2018-03-02 Michael Orlitzkyconfigure.ac: drop AC_TYPE_MODE_T since we don't use...
2018-03-02 Michael Orlitzkyautotools: bump the package and library versions to...
2018-03-02 Michael OrlitzkyReplace nftw() with manual recursion in apply_default_a...
2018-03-02 Michael OrlitzkyUpdate docs and tests for the --recursive exit code.
2018-03-02 Michael Orlitzkyrun-tests.sh: ensure that we descend into directories...
2018-03-02 Michael Orlitzkysrc/libadacl.c: delete an outdated comment.
2018-03-02 Michael Orlitzkyautotools: bump the package and library versions to... v0.2.0
2018-03-02 Michael OrlitzkyEliminate the apply_default_acl_ex() function.
2018-03-02 Michael Orlitzkysrc/libadacl.c: remove two NULL checks around acl_free...
2018-03-02 Michael Orlitzkysrc/libadacl.c: fix two comment typos.
2018-03-02 Michael Orlitzkyapply_default_acl_ex: avoid second call to safe_open...
2018-03-02 Michael Orlitzkysrc/libadacl.c: minor code simplification in safe_open().
2018-03-02 Michael Orlitzkysrc/libadacl.c: fix return type of fgetxattr in acl_cop...
2018-03-02 Michael Orlitzkyrun-tests.sh: add two tests to ensure a no-op without...
2018-03-02 Michael Orlitzkyrun-tests.sh: add a test for the "Not a directory"...
2018-03-02 Michael Orlitzkyrun-tests.sh: whitespace cleanup.
2018-03-01 Michael Orlitzkysrc/libadacl.c: rewrite acl_set_entry() as acl_update_e...
2018-03-01 Michael OrlitzkyEliminate the wipe_acls() function that is apparently...
2018-03-01 Michael Orlitzkysrc/libadacl.c: remove redundant empty pathname checks...
2018-03-01 Michael Orlitzkysrc/libadacl.c: kill a pointless "else if" after an...
2018-03-01 Michael Orlitzkyapply_default_acl_ex: don't loop through the ACL unless...
2018-03-01 Michael OrlitzkyImprove the error message for most types of inaccessibl...
2018-03-01 Michael OrlitzkyBail out of apply_default_acl_ex() early if the parent...
2018-03-01 Michael Orlitzkysrc/libadacl.c: don't try to close file descriptor...
2018-03-01 Michael Orlitzkyconfigure.ac: bump to version 0.1.5. v0.1.5
2018-03-01 Michael OrlitzkyReplace all tabs with spaces. We're not animals.
2018-03-01 Michael OrlitzkyEliminate the last bit of pathname usage.
2018-02-28 Michael Orlitzkysrc/libadacl.c: fix a function name inside perror output.
2018-02-28 Michael Orlitzkylibadacl.c: remove unused acl_get_permset() call in...
2018-02-28 Michael Orlitzkyconfigure.ac: bump to version 0.1.4. v0.1.4
2018-02-28 Michael Orlitzkyconfigure.ac: check for the O_PATH flag in fcntl.h.
2018-02-28 Michael Orlitzkysrc/libadacl.c: mention the O_PATH flag in a comment.
2018-02-28 Michael Orlitzkyconfigure.ac: check for the O_DIRECTORY flag in fcntl.h.
2018-02-28 Michael Orlitzkylibadacl.c: use O_PATH in safe_open() for added safety.
2018-02-27 Michael Orlitzkyconfigure.ac: bump to version 0.1.3. v0.1.3
2018-02-27 Michael OrlitzkyAdd various NULL pointer checks for good measure.
2018-02-27 Michael Orlitzkysafe_open_ex: remove redundant (pathname == NULL) check.
2018-02-27 Michael Orlitzkysafe_open_ex: add a comment about why O_PATH doesn...
2018-02-27 Michael Orlitzkyrun-tests.sh: add more tests for exit codes.
2018-02-27 Michael Orlitzkysrc/apply-default-acl.c: update the CLI to match docume...
2018-02-27 Michael Orlitzkyman/apply-default-acl.1: add a note about the --recursi...
2018-02-27 Michael Orlitzkyrun-tests.sh: add two tests for regular file and symlin...
2018-02-27 Michael Orlitzkyman/apply-default-acl.1: document the way exit codes...
2018-02-27 Michael Orlitzkydoc/man/apply-default-acl.1: remove superfluous line...
2018-02-27 Michael Orlitzkyconfigure.ac: bump to version 0.1.2. v0.1.2
2018-02-27 Michael Orlitzkysrc/libadacl.h: add missing includes for "bool" and...
2018-02-26 Michael Orlitzkyconfigure.ac: use xz for distfiles.
2018-02-26 Michael Orlitzkyconfigure.ac: bump to version 0.1.1. v0.1.1
2018-02-26 Michael Orlitzkylibadacl: add error checking when we open() the filesys...
2018-02-26 Michael Orlitzkyconfigure.ac: bump to version 0.1.0. v0.1.0
2018-02-26 Michael Orlitzkyconfigure.ac: remove pointless comment at the top of...
2018-02-26 Michael Orlitzkyconfigure.ac: add checks for openat() and O_NOFOLLOW.
2018-02-26 Michael Orlitzkyconfigure.ac: add limits.h to the AC_CHECK_HEADERS...
2018-02-26 Michael OrlitzkyAdd missing "flags" parameter documentation to the...
2018-02-26 Michael OrlitzkyUpgrade our Doxyfile automatically with doxygen -u.
2018-02-26 Michael OrlitzkyMove a few constants out of the libadacl.h header to...
2018-02-26 Michael Orlitzkylibadacl: update failure return value docs for apply_de...
2018-02-26 Michael OrlitzkyRename apply_default_acl() to apply_default_acl_ex...
2018-02-26 Michael Orlitzkylibadacl: improve safe_open() error message when given...
2018-02-26 Michael OrlitzkyClean up a few "include" statements, and document them.
2018-02-26 Michael OrlitzkySplit most functions off into a separate shared library.
2018-02-26 Michael OrlitzkyUpdate the man page to say that symlinks are ignored...
2018-02-26 Michael OrlitzkyAdd documentation for the safe_open() and safe_open_ex...
2018-02-26 Michael OrlitzkyDefine a few more error constants to make the code...
2018-02-26 Michael OrlitzkyDon't output anything in safe_open_ex when we ignore...
2018-02-26 Michael OrlitzkyAdd a test to ensure that non-terminal symlinks are...
2018-02-26 Michael OrlitzkyAdd a test to ensure that symlinks in the CWD don't...
2018-02-26 Michael OrlitzkyAdd safe_open() function to fix symlink traversal in...
2018-02-26 Michael OrlitzkyFix an old comment about dirname/basename handling...
2018-02-26 Michael OrlitzkyEliminate the is_path_directory() function.
2018-02-26 Michael OrlitzkyPass a stat structure pointer to any_can_execute()...
2018-02-26 Michael OrlitzkyAllow apply_default_acl() to take a stat pointer for...
2018-02-26 Michael OrlitzkyImprove the error message when assign_default_acl(...
2018-02-26 Michael OrlitzkyEliminate the one remaining use of is_directory().
2018-02-26 Michael OrlitzkyMove the "or_dir" out of any_can_execute_or_dir().
2018-02-26 Michael OrlitzkyInline the is_hardlink_safe() and is_regular_file(...
2018-02-26 Michael OrlitzkyImprove the error message when apply_default_acl()...
2018-02-26 Michael OrlitzkyEliminate pointless newline in the signature of acl_set...
2018-02-26 Michael OrlitzkyInline the one call to the get_mode() function.
2018-02-26 Michael OrlitzkyEliminate unnecessary intermediate result variables.
2018-02-26 Michael OrlitzkySimplify wipe_acls() by having it unconditionally write...
2018-02-26 Michael OrlitzkyReplace most path usage with file descriptors.
2018-02-23 Michael OrlitzkyRename is_directory() to is_path_directory() in prepara...
2018-02-23 Michael OrlitzkyAdd missing jump-to-cleanup in one error scenario.
2018-02-23 Michael OrlitzkyAdd comments explainining the acl_create_entry() gymnas...
2018-02-23 Michael OrlitzkyRemove pointless indirection in acl_entry_count() and...
2018-02-23 Michael OrlitzkyHave acl_execute_masked() take an acl_t rather than...
2018-02-23 Michael OrlitzkyRename inherit_default_acl() to assign_default_acl().
2018-02-23 Michael OrlitzkyNaively ignore hard links to avoid security mishaps.
2016-10-03 Michael OrlitzkyFix capitalization of "No such..." in the expected... v0.0.6
2016-10-03 Michael OrlitzkyAdd one more test for recursive symlink handling.
2016-10-03 Michael OrlitzkyFix symlink handling and update to version 0.0.6.
2016-09-27 Michael OrlitzkyAdd three tests for the new "no such file..." error... v0.0.5
2016-09-27 Michael OrlitzkyUse $() for subshells instead of backticks in run-tests.sh.
2016-09-27 Michael OrlitzkyPrint an error if any targets do not exist.
next