summaryrefslogtreecommitdiff
path: root/man/man3/acl_set_tag_type.3
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2002-03-26 22:12:14 +0000
committerNathan Scott <nathans@sgi.com>2002-03-26 22:12:14 +0000
commit29e231a37a070c4961330dc1f0bb0dfc56fcc5ae (patch)
tree0c30ad77e6701630da466c8b39dd81aaa766230a /man/man3/acl_set_tag_type.3
parent36289a951fd729241dafc92bc2a81679764ba31f (diff)
downloadacl-29e231a37a070c4961330dc1f0bb0dfc56fcc5ae.tar.gz
bump version number to 2.0.5 - section 3 added to man pages, some
code reorg in libacl to be more p1003.1eD17 compliant.
Diffstat (limited to 'man/man3/acl_set_tag_type.3')
-rw-r--r--man/man3/acl_set_tag_type.380
1 files changed, 80 insertions, 0 deletions
diff --git a/man/man3/acl_set_tag_type.3 b/man/man3/acl_set_tag_type.3
new file mode 100644
index 0000000..78dc740
--- /dev/null
+++ b/man/man3/acl_set_tag_type.3
@@ -0,0 +1,80 @@
+.\" Access Control Lists manual pages
+.\"
+.\" (C) 2002 Andreas Gruenbacher, <a.gruenbacher@computer.org>
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.TH ACL_SET_TAG_TYPE 3 "Linux ACL Library" "March 2002" "Access Control Lists"
+.SH NAME
+acl_set_tag_type \- set the tag type of an ACL entry
+.SH LIBRARY
+Linux Access Control Lists library (libacl, \-lacl).
+.SH SYNOPSIS
+.sp
+.nf
+.B #include <sys/types.h>
+.B #include <sys/acl.h>
+.sp
+.B "int acl_set_tag_type (acl_entry_t \f2entry_d\f3, "
+.B " acl_tag_t \f2tag_type\f3);"
+.Op
+.SH DESCRIPTION
+The
+.B acl_set_tag_type
+function sets the tag type of the ACL entry indicated by the argument
+.I entry_d
+to the value of the argument
+.IR tag_type .
+.PP
+Any ACL entry descriptors that refer to the entry referred to by
+.I entry_d
+continue to refer to that entry.
+.SH RETURN VALUE
+The value 0 is returned if successful; otherwise the value -1 is
+returned and the global variable errno is set to indicate the error.
+.SH ERRORS
+If any of the following conditions occur, the
+.B acl_set_tag_type
+function returns -1 and sets
+.B errno
+to the corresponding value:
+.TP
+.SM
+\%[EINVAL]
+The argument
+.I entry_d
+is not a valid descriptor for an ACL entry.
+.TP
+.SM
+\%[EINVAL]
+The argument
+.I tag_type
+is not a valid tag type.
+.SH STANDARDS
+IEEE Std 1003.1e draft 17 (\(lqPOSIX.1e\(rq, abandoned)
+.SH AUTHOR
+Derived from the FreeBSD manual pages written by
+.IR "Robert N M Watson" ;
+and adapted for Linux by
+.I "Andreas Gruenbacher"
+<a.gruenbacher@computer.org>.
+.SH SEE ALSO
+.BR acl_create_entry (3),
+.BR acl_set_entry (3),
+.BR acl_get_qualifier (3),
+.BR acl_set_qualifier (3),
+.BR acl_get_tag_type (3),
+.BR acl_get_permset (3),
+.BR acl_set_permset (3),
+.BR acl_free (3),
+.BR acl (5)