diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-08-19 19:52:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:29:56 -0500 |
commit | 06dd8d28ae1625e201082f0dc7019f753c9afb34 (patch) | |
tree | 12ae364e3db8aed468983be9f48f19d9c5c1dd99 /source3 | |
parent | a2c3e56a499fd6fbeb29be62fbacd3c99c1b3028 (diff) | |
download | samba-06dd8d28ae1625e201082f0dc7019f753c9afb34.tar.gz samba-06dd8d28ae1625e201082f0dc7019f753c9afb34.tar.bz2 samba-06dd8d28ae1625e201082f0dc7019f753c9afb34.zip |
r24547: Fix #4897, patch from David S. Collier-Brown <davecb@spamcop.net> -- Thanks!
(This used to be commit 4a90264d173ef5a870f2a44554c3bb9e738e98fb)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/system.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index 33633d93ed..9cef818fab 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -1686,12 +1686,12 @@ int sys_dup2(int oldfd, int newfd) /******** Solaris EA helper function prototypes ********/ #ifdef HAVE_ATTROPEN #define SOLARIS_ATTRMODE S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP -int solaris_write_xattr(int attrfd, const char *value, size_t size); -ssize_t solaris_read_xattr(int attrfd, void *value, size_t size); -ssize_t solaris_list_xattr(int attrdirfd, char *list, size_t size); -int solaris_unlinkat(int attrdirfd, const char *name); -int solaris_attropen(const char *path, const char *attrpath, int oflag, mode_t mode); -int solaris_openat(int fildes, const char *path, int oflag, mode_t mode); +static int solaris_write_xattr(int attrfd, const char *value, size_t size); +static ssize_t solaris_read_xattr(int attrfd, void *value, size_t size); +static ssize_t solaris_list_xattr(int attrdirfd, char *list, size_t size); +static int solaris_unlinkat(int attrdirfd, const char *name); +static int solaris_attropen(const char *path, const char *attrpath, int oflag, mode_t mode); +static int solaris_openat(int fildes, const char *path, int oflag, mode_t mode); #endif /************************************************************************** |