summaryrefslogtreecommitdiffstats
path: root/source/smbwrapper/smbw_stat.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-05 04:58:33 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-05 04:58:33 +0000
commitc6ee915336e1533e1f4f10f14b3d57de01f8fe96 (patch)
tree7c76f16a7da7bc7bb9e9ae1a90573494a5a292ba /source/smbwrapper/smbw_stat.c
parent788992f58613f7f4fa0e9ce7087267dec75f2e51 (diff)
downloadsamba-c6ee915336e1533e1f4f10f14b3d57de01f8fe96.tar.gz
samba-c6ee915336e1533e1f4f10f14b3d57de01f8fe96.tar.xz
samba-c6ee915336e1533e1f4f10f14b3d57de01f8fe96.zip
got rid of all assembly code and gcc special features. I'm hoping to
get smbsh working with the normal sun compiler
Diffstat (limited to 'source/smbwrapper/smbw_stat.c')
-rw-r--r--source/smbwrapper/smbw_stat.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/smbwrapper/smbw_stat.c b/source/smbwrapper/smbw_stat.c
index d0b0e59b4f2..5362f3a6cb6 100644
--- a/source/smbwrapper/smbw_stat.c
+++ b/source/smbwrapper/smbw_stat.c
@@ -120,8 +120,6 @@ int smbw_fstat(int fd, struct stat *st)
uint32 size;
int mode;
- DEBUG(4,("%s\n", __FUNCTION__));
-
smbw_busy++;
file = smbw_file(fd);
@@ -147,8 +145,6 @@ int smbw_fstat(int fd, struct stat *st)
st->st_mtime = m_time;
st->st_dev = file->srv->dev;
- DEBUG(4,("%s - OK\n", __FUNCTION__));
-
smbw_busy--;
return 0;
}
@@ -166,8 +162,6 @@ int smbw_stat(const char *fname, struct stat *st)
size_t size=0;
uint32 mode=0;
- DEBUG(4,("%s (%s)\n", __FUNCTION__, fname));
-
if (!fname) {
errno = EINVAL;
return -1;