summaryrefslogtreecommitdiff
path: root/source3/smbd
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-09-05 05:23:29 +0000
committerAndrew Tridgell <tridge@samba.org>1998-09-05 05:23:29 +0000
commit012e575e1336fbba70174d32c26ecab9ce5523ce (patch)
treea9a5282e7d59433dec562e07abfd5b79f6f0cf32 /source3/smbd
parente9ea36e4d2270bd7d32da12ef6d6e2299641582d (diff)
downloadsamba-012e575e1336fbba70174d32c26ecab9ce5523ce.tar.gz
samba-012e575e1336fbba70174d32c26ecab9ce5523ce.tar.bz2
samba-012e575e1336fbba70174d32c26ecab9ce5523ce.zip
ahh, the joy of deleting large chunks of code that someone else has
painstakingly put in :) This gets rid of most of the #ifdef LARGE_SMB_INO_T ifdefs around DEBUG() statements. We just use %.0f in all cases. Makes the code a bit easier to read :) (This used to be commit 41f0069afc02169932e04ff0039bb6328eaaf04d)
Diffstat (limited to 'source3/smbd')
-rw-r--r--source3/smbd/trans2.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c
index f0ed77bd97..709b8daecd 100644
--- a/source3/smbd/trans2.c
+++ b/source3/smbd/trans2.c
@@ -1584,11 +1584,7 @@ static int call_trans2setfilepathinfo(connection_struct *conn,
DEBUG(6,("actime: %s " , ctime(&tvs.actime)));
DEBUG(6,("modtime: %s ", ctime(&tvs.modtime)));
-#ifdef LARGE_SMB_OFF_T
DEBUG(6,("size: %.0f ", (double)size));
-#else /* LARGE_SMB_OFF_T */
- DEBUG(6,("size: %x " , (int)size));
-#endif /* LARGE_SMB_OFF_T */
DEBUG(6,("mode: %x\n" , mode));
/* get some defaults (no modifications) if any info is zero. */