Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use pathconf() to get _PC_CHOWN_RESTRICTED flag #41

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Apr 18, 2024

  1. use pathconf() to get _PC_CHOWN_RESTRICTED flag

    The _PC_* constants are only meaningful in pathconf(); conversely,
    sysconf() only understands _SC_* constants.
    
    Previously, this code didn't do anything meaningful. For example, on x64
    Linux _PC_CHOWN_RESTRICTED is 6, which sysconf() would have interpreted
    as _SC_TZNAME_MAX (also 6).
    mauke committed Apr 18, 2024
    Configuration menu
    Copy the full SHA
    2de518a View commit details
    Browse the repository at this point in the history