summaryrefslogtreecommitdiff
path: root/source3/libsmb/trustdom_cache.c
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2005-04-19 19:23:49 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:56:40 -0500
commit1d08b9013a67184b0ecfe8b013926128719b68a6 (patch)
tree48b05c1be341c1f5183abb7673435e1b0634058a /source3/libsmb/trustdom_cache.c
parent67e9fb7c7c61a337da7efb887e401dfaa828b7b5 (diff)
downloadsamba-1d08b9013a67184b0ecfe8b013926128719b68a6.tar.gz
samba-1d08b9013a67184b0ecfe8b013926128719b68a6.tar.bz2
samba-1d08b9013a67184b0ecfe8b013926128719b68a6.zip
r6392: - Fixes bug 2564: when smbc_opendir() was called with a file rather than
a directory, the errno returned could end up as ENOENT rather than ENOTDIR. - Fixes some compiler warnings which showed up on IRIX, as reported by James Peach. (This used to be commit 615a62b21f8d2f7f97bde2f166ddd6849d39b95c)
Diffstat (limited to 'source3/libsmb/trustdom_cache.c')
-rw-r--r--source3/libsmb/trustdom_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/trustdom_cache.c b/source3/libsmb/trustdom_cache.c
index e63acd18c4..8c5fb4d907 100644
--- a/source3/libsmb/trustdom_cache.c
+++ b/source3/libsmb/trustdom_cache.c
@@ -320,7 +320,7 @@ void update_trustdom_cache( void )
if ( (last_check = trustdom_cache_fetch_timestamp()) == 0 )
trustdom_cache_store_timestamp(0, now+TRUSTDOM_UPDATE_INTERVAL);
- time_diff = now - last_check;
+ time_diff = (int) (now - last_check);
if ( (time_diff > 0) && (time_diff < TRUSTDOM_UPDATE_INTERVAL) ) {
DEBUG(10,("update_trustdom_cache: not time to update trustdom_cache yet\n"));