diff options
author | Jeremy Allison <jra@samba.org> | 2004-08-25 23:20:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:52:30 -0500 |
commit | db2ffe10f9283c86f95ae76d38c21916065a4b87 (patch) | |
tree | 87c016dafda1d915a5452e230f24c1550af9dd02 /source3/include | |
parent | bf645415f6a611d71eb07e9ebd9f005a02720a6d (diff) | |
download | samba-db2ffe10f9283c86f95ae76d38c21916065a4b87.tar.gz samba-db2ffe10f9283c86f95ae76d38c21916065a4b87.tar.bz2 samba-db2ffe10f9283c86f95ae76d38c21916065a4b87.zip |
r2076: Removed old dir caching code - not being used now we have the
statcache anyway. New dir caching will be done on nanosecond
timestamps.
Jeremy.
(This used to be commit ba473a580245430009245a4c8b8dcaf9fc4b6406)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb_macros.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/include/smb_macros.h b/source3/include/smb_macros.h index bcbaa64f86..a9e911c066 100644 --- a/source3/include/smb_macros.h +++ b/source3/include/smb_macros.h @@ -26,7 +26,6 @@ /* Misc bit macros */ #define BOOLSTR(b) ((b) ? "Yes" : "No") -#define BITSETB(ptr,bit) ((((char *)ptr)[0] & (1<<(bit)))!=0) #define BITSETW(ptr,bit) ((SVAL(ptr,0) & (1<<(bit)))!=0) /* for readability... */ |