summaryrefslogtreecommitdiff
path: root/source3/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
commit4e8b4a20ab3a21c69c03b548709b60267b50af44 (patch)
treed9bd89a37c01b833a922258f8831945a0c7f6431 /source3/smbwrapper/smbw_stat.c
parenta2941d42441cc0e80b0c725544b43d8b3099d156 (diff)
downloadsamba-4e8b4a20ab3a21c69c03b548709b60267b50af44.tar.gz
samba-4e8b4a20ab3a21c69c03b548709b60267b50af44.tar.bz2
samba-4e8b4a20ab3a21c69c03b548709b60267b50af44.zip
got rid of all assembly code and gcc special features. I'm hoping to
get smbsh working with the normal sun compiler (This used to be commit c6ee915336e1533e1f4f10f14b3d57de01f8fe96)
Diffstat (limited to 'source3/smbwrapper/smbw_stat.c')
-rw-r--r--source3/smbwrapper/smbw_stat.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/source3/smbwrapper/smbw_stat.c b/source3/smbwrapper/smbw_stat.c
index d0b0e59b4f..5362f3a6cb 100644
--- a/source3/smbwrapper/smbw_stat.c
+++ b/source3/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;