diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-24 18:08:25 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-01-24 18:08:25 +0000 |
commit | 807e0eba726802e89206ea6dbad4f06606cb9e5d (patch) | |
tree | c93cef358dad4397bb2d1e5c18fd3f5a902bfa7a | |
parent | 917fab4b4ddf202b078eae83de3e1311f2111cfa (diff) | |
download | s6-807e0eba726802e89206ea6dbad4f06606cb9e5d.tar.xz |
Document the types change (uid_t and gid_t in accessrules)
-rw-r--r-- | doc/libs6/accessrules.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/libs6/accessrules.html b/doc/libs6/accessrules.html index 39f34f9..20d3f2c 100644 --- a/doc/libs6/accessrules.html +++ b/doc/libs6/accessrules.html @@ -234,7 +234,7 @@ function with a backend function. <p> <code> s6_accessrules_result_t s6_accessrules_uidgid_cdb -(unsigned int u, unsigned int g, struct cdb *c, +(uid_t u, gid_t g, struct cdb *c, s6_accessrules_params_t *params) </code> <br /> Checks the *<em>c</em> CDB database for an authorization for uid <em>u</em> and gid <em>g</em>. If the result is S6_ACCESSRULES_ALLOW, additional @@ -243,7 +243,7 @@ information may be stored into <em>params</em>. <p> <code> s6_accessrules_result_t s6_accessrules_uidgid_fs -(unsigned int u, unsigned int g, char const *dir, +(uid_t u, gid_t g, char const *dir, s6_accessrules_params_t *params) </code> <br /> Checks the <em>dir</em> base directory for an authorization for uid <em>u</em> and gid <em>g</em>. If the result is S6_ACCESSRULES_ALLOW, additional |