summaryrefslogtreecommitdiff
path: root/source3/smbwrapper
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-07 23:57:02 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-07 23:57:02 +0000
commit0dc8033f7da1723580934e8e5ce997b0037676ae (patch)
tree8d05b332d408972f93299394814ee2fa667e08bd /source3/smbwrapper
parent48b31ae44fb2a1961bd738b0b3e7a986259168a2 (diff)
downloadsamba-0dc8033f7da1723580934e8e5ce997b0037676ae.tar.gz
samba-0dc8033f7da1723580934e8e5ce997b0037676ae.tar.bz2
samba-0dc8033f7da1723580934e8e5ce997b0037676ae.zip
don't prototype the acl() functions
(This used to be commit 9efbb21f35aca6f86ed3cb9c58ebec40e5d44b90)
Diffstat (limited to 'source3/smbwrapper')
-rw-r--r--source3/smbwrapper/smbw.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/smbwrapper/smbw.c b/source3/smbwrapper/smbw.c
index 2dcf4cc588..9a22854ae3 100644
--- a/source3/smbwrapper/smbw.c
+++ b/source3/smbwrapper/smbw.c
@@ -1335,7 +1335,7 @@ int smbw_fork(void)
/*****************************************************
say no to acls
*******************************************************/
-int smbw_acl(const char *pathp, int cmd, int nentries, aclent_t *aclbufp)
+ int smbw_acl(const char *pathp, int cmd, int nentries, aclent_t *aclbufp)
{
if (cmd == GETACL || cmd == GETACLCNT) return 0;
errno = ENOSYS;
@@ -1347,7 +1347,7 @@ int smbw_acl(const char *pathp, int cmd, int nentries, aclent_t *aclbufp)
/*****************************************************
say no to acls
*******************************************************/
-int smbw_facl(int fd, int cmd, int nentries, aclent_t *aclbufp)
+ int smbw_facl(int fd, int cmd, int nentries, aclent_t *aclbufp)
{
if (cmd == GETACL || cmd == GETACLCNT) return 0;
errno = ENOSYS;
@@ -1358,7 +1358,7 @@ int smbw_facl(int fd, int cmd, int nentries, aclent_t *aclbufp)
#ifdef HAVE_STAT64
/* this can't be in wrapped.c because of include conflicts */
-void stat64_convert(struct stat *st, struct stat64 *st64)
+ void stat64_convert(struct stat *st, struct stat64 *st64)
{
st64->st_size = st->st_size;
st64->st_mode = st->st_mode;
@@ -1377,7 +1377,7 @@ void stat64_convert(struct stat *st, struct stat64 *st64)
#endif
#ifdef HAVE_READDIR64
-void dirent64_convert(struct dirent *d, struct dirent64 *d64)
+ void dirent64_convert(struct dirent *d, struct dirent64 *d64)
{
d64->d_ino = d->d_ino;
d64->d_off = d->d_off;
@@ -1412,7 +1412,7 @@ struct kernel_stat {
unsigned long int __unused5;
};
-void xstat_convert(int vers, struct stat *st, struct kernel_stat *kbuf)
+ void xstat_convert(int vers, struct stat *st, struct kernel_stat *kbuf)
{
if (vers == _STAT_VER_LINUX_OLD) {
memcpy(st, kbuf, sizeof(*st));