[cpp-opensaml] branch master updated: Fix some time_t/int/long warnings.
Scott Cantor
cantor.2 at osu.edu
Mon Mar 26 13:33:39 EDT 2018
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository cpp-opensaml.
View the commit online:
http://git.shibboleth.net/view/?p=cpp-opensaml.git;a=commit;h=29d59c16763e47ade2713819be4b07adefabe75e
The following commit(s) were added to refs/heads/master by this push:
new 29d59c1 Fix some time_t/int/long warnings.
29d59c1 is described below
commit 29d59c16763e47ade2713819be4b07adefabe75e
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Mar 26 13:33:28 2018 -0400
Fix some time_t/int/long warnings.
---
saml/saml2/metadata/AbstractDynamicMetadataProvider.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/saml/saml2/metadata/AbstractDynamicMetadataProvider.h b/saml/saml2/metadata/AbstractDynamicMetadataProvider.h
index 3508146..e4e0dab 100644
--- a/saml/saml2/metadata/AbstractDynamicMetadataProvider.h
+++ b/saml/saml2/metadata/AbstractDynamicMetadataProvider.h
@@ -103,8 +103,8 @@ namespace opensaml {
// Used to manage background maintenance of cache.
bool m_shutdown;
- time_t m_cleanupInterval;
- time_t m_cleanupTimeout;
+ long m_cleanupInterval;
+ long m_cleanupTimeout;
xmltooling::CondWait* m_cleanup_wait;
xmltooling::Thread* m_cleanup_thread;
static void* cleanup_fn(void*);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list