summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2002-07-18 00:15:48 +0000
committerNathan Scott <nathans@sgi.com>2002-07-18 00:15:48 +0000
commit2c5a8122ea0e938ebeb4f02f87d0d7b8d46a8cd1 (patch)
treee4081cd5d92a7d54f35b609145ccb902c431d15c /man
parent6b956682b51c4108b0bb2c2a1cf54bddf344fbfa (diff)
downloadattr-2c5a8122ea0e938ebeb4f02f87d0d7b8d46a8cd1.tar.gz
annotate minor changes since last version.
Diffstat (limited to 'man')
-rw-r--r--man/man3/attr_get.38
-rw-r--r--man/man3/attr_multi.34
-rw-r--r--man/man3/attr_remove.34
-rw-r--r--man/man3/attr_set.38
4 files changed, 12 insertions, 12 deletions
diff --git a/man/man3/attr_get.3 b/man/man3/attr_get.3
index a6b8640..c8b3791 100644
--- a/man/man3/attr_get.3
+++ b/man/man3/attr_get.3
@@ -6,11 +6,11 @@ attr_get, attr_getf \- get the value of a user attribute of a filesystem object
.nf
.B #include <attr/attributes.h>
.sp
-.B "int attr_get (const char **\f2path\f3, const char **\f2attrname\f3, "
-.B " char **\f2attrvalue\f3, int **\f2valuelength\f3, int \f2flags\f3);"
+.B "int attr_get (const char *\f2path\f3, const char *\f2attrname\f3, "
+.B " char *\f2attrvalue\f3, int *\f2valuelength\f3, int \f2flags\f3);"
.PP
-.B "int attr_getf (int \f2fd\f3, const char **\f2attrname\f3, "
-.B " char **\f2attrvalue\f3, int **\f2valuelength\f3, int \f2flags\f3);"
+.B "int attr_getf (int \f2fd\f3, const char *\f2attrname\f3, "
+.B " char *\f2attrvalue\f3, int *\f2valuelength\f3, int \f2flags\f3);"
.Op
.SH DESCRIPTION
The
diff --git a/man/man3/attr_multi.3 b/man/man3/attr_multi.3
index 3379083..e9ce9b3 100644
--- a/man/man3/attr_multi.3
+++ b/man/man3/attr_multi.3
@@ -7,10 +7,10 @@ attr_multi, attr_multif \- manipulate multiple user attributes on a filesystem o
.nf
.B #include <attr/attributes.h>
.sp
-.B "int attr_multi (const char **\f2path\f3, attr_multiop_t **\f2oplist\f3, "
+.B "int attr_multi (const char *\f2path\f3, attr_multiop_t *\f2oplist\f3, "
.B " int \f2count\f3, int \f2flags\f3);"
.PP
-.B "int attr_multif (int \f2fd\f3, attr_multiop_t **\f2oplist\f3, "
+.B "int attr_multif (int \f2fd\f3, attr_multiop_t *\f2oplist\f3, "
.B " int \f2count\f3, int \f2flags\f3);"
.Op
.SH DESCRIPTION
diff --git a/man/man3/attr_remove.3 b/man/man3/attr_remove.3
index b1ee328..3ca2ea2 100644
--- a/man/man3/attr_remove.3
+++ b/man/man3/attr_remove.3
@@ -7,9 +7,9 @@ attr_remove, attr_removef \- remove a user attribute of a filesystem object
.nf
.B #include <attr/attributes.h>
.sp
-.B "int attr_remove (const char **\f2path\f3, const char **\f2attrname\f3, int \f2flags\f3);"
+.B "int attr_remove (const char *\f2path\f3, const char *\f2attrname\f3, int \f2flags\f3);"
.PP
-.B "int attr_removef (int \f2fd\f3, const char **\f2attrname\f3, int \f2flags\f3);"
+.B "int attr_removef (int \f2fd\f3, const char *\f2attrname\f3, int \f2flags\f3);"
.Op
.SH DESCRIPTION
The
diff --git a/man/man3/attr_set.3 b/man/man3/attr_set.3
index fbf8ad9..a24c776 100644
--- a/man/man3/attr_set.3
+++ b/man/man3/attr_set.3
@@ -7,12 +7,12 @@ attr_set, attr_setf \- set the value of a user attribute of a filesystem object
.nf
.B #include <attr/attributes.h>
.sp
-.B "int attr_set (const char **\f2path\f3, const char **\f2attrname\f3, "
-.B " const char **\f2attrvalue\f3, const int \f2valuelength\f3,"
+.B "int attr_set (const char *\f2path\f3, const char *\f2attrname\f3, "
+.B " const char *\f2attrvalue\f3, const int \f2valuelength\f3,"
.B " int \f2flags\f3);"
.PP
-.B "int attr_setf (int \f2fd\f3, const char **\f2attrname\f3, "
-.B " const char **\f2attrvalue\f3, const int \f2valuelength\f3,"
+.B "int attr_setf (int \f2fd\f3, const char *\f2attrname\f3, "
+.B " const char *\f2attrvalue\f3, const int \f2valuelength\f3,"
.B " int \f2flags\f3);"
.Op
.SH DESCRIPTION