From 4e8b4a20ab3a21c69c03b548709b60267b50af44 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 5 Oct 1998 04:58:33 +0000 Subject: 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) --- source3/smbwrapper/smbw_stat.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'source3/smbwrapper/smbw_stat.c') 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; -- cgit