mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 08:16:54 +00:00
Merge pull request #3959 from ThomasWaldmann/fix-acl-proto-master
acl platform code: fix acl set return type (master)
This commit is contained in:
commit
89d87ff433
3 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ cdef extern from "sys/acl.h":
|
|||
|
||||
int acl_free(void *obj)
|
||||
acl_t acl_get_link_np(const char *path, int type)
|
||||
acl_t acl_set_link_np(const char *path, int type, acl_t acl)
|
||||
int acl_set_link_np(const char *path, int type, acl_t acl)
|
||||
acl_t acl_from_text(const char *buf)
|
||||
char *acl_to_text(acl_t acl, ssize_t *len_p)
|
||||
int ACL_TYPE_EXTENDED
|
||||
|
|
|
@ -21,7 +21,7 @@ cdef extern from "sys/acl.h":
|
|||
|
||||
int acl_free(void *obj)
|
||||
acl_t acl_get_link_np(const char *path, int type)
|
||||
acl_t acl_set_link_np(const char *path, int type, acl_t acl)
|
||||
int acl_set_link_np(const char *path, int type, acl_t acl)
|
||||
acl_t acl_from_text(const char *buf)
|
||||
char *acl_to_text_np(acl_t acl, ssize_t *len, int flags)
|
||||
int ACL_TEXT_NUMERIC_IDS
|
||||
|
|
|
@ -25,7 +25,7 @@ cdef extern from "sys/acl.h":
|
|||
|
||||
int acl_free(void *obj)
|
||||
acl_t acl_get_file(const char *path, int type)
|
||||
acl_t acl_set_file(const char *path, int type, acl_t acl)
|
||||
int acl_set_file(const char *path, int type, acl_t acl)
|
||||
acl_t acl_from_text(const char *buf)
|
||||
char *acl_to_text(acl_t acl, ssize_t *len)
|
||||
|
||||
|
|
Loading…
Reference in a new issue