summaryrefslogtreecommitdiff
path: root/lib/libc/posix1e/extattr.c
Commit message (Collapse)AuthorAgeFilesLines
* Include a couple of headers to ensure consistency between the prototype andStefan Farfeleder2005-09-121-0/+1
| | | | | | | the function definition. Notes: svn path=/head/; revision=150065
* Fix the style of the SCM ID's.David E. O'Brien2002-03-221-4/+3
| | | | | | | I believe have made all of libc .c's as consistent as possible. Notes: svn path=/head/; revision=92986
* Check if string is not NULL, not *string, before setting *string.Brian Feldman2002-02-271-2/+2
| | | | Notes: svn path=/head/; revision=91428
* Add __FBSDID()s to libutilMatthew Dillon2001-09-301-2/+4
| | | | Notes: svn path=/head/; revision=84225
* o Rename "namespace" argument to "attrnamespace" as namespace is a C++Robert Watson2001-03-191-7/+7
| | | | | | | | | | reserved word. Submitted by: jkh Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=74436
* o To support new EA interface with explicit namespaces, introduce twoRobert Watson2001-03-151-0/+75
utility functions which convert between string namespace names and numeric constants used by the interface. Right now, two namespaces are supported, EXTATTR_NAMESPACE_SYSTEM ("system") and EXTATTR_NAMESPACE_USER ("user"). These functions are used by various userland EA utilities, rather than hard coding the routines all over the place. Obtained from: TrustedBSD Project Notes: svn path=/head/; revision=74274