summaryrefslogtreecommitdiffstats
path: root/source/smbwrapper/smbw.c
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
commit9efbb21f35aca6f86ed3cb9c58ebec40e5d44b90 (patch)
tree19805e3053537b6959b575f6b3c7505d84388903 /source/smbwrapper/smbw.c
parent6677b888bdb45df00646eb7cc13005b9465ff971 (diff)
downloadsamba-9efbb21f35aca6f86ed3cb9c58ebec40e5d44b90.tar.gz
samba-9efbb21f35aca6f86ed3cb9c58ebec40e5d44b90.tar.xz
samba-9efbb21f35aca6f86ed3cb9c58ebec40e5d44b90.zip
don't prototype the acl() functions
Diffstat (limited to 'source/smbwrapper/smbw.c')
-rw-r--r--source/smbwrapper/smbw.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/smbwrapper/smbw.c b/source/smbwrapper/smbw.c
index 2dcf4cc588d..9a22854ae3c 100644
--- a/source/smbwrapper/smbw.c
+++ b/source/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));