diff options
author | Jack Lloyd <[email protected]> | 2017-10-24 15:48:21 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-24 15:48:21 -0400 |
commit | 4f49a6444127801335dab049f0f0b4419d8d9cc1 (patch) | |
tree | 4a7ecc596866ff0e69fc7fce2cd043c1c4fc60e4 /src/lib/utils | |
parent | 00d6b7c01429682b4f12d007ad5ce20e8492afda (diff) |
Convert http:// links to https:// where possible
Diffstat (limited to 'src/lib/utils')
-rw-r--r-- | src/lib/utils/calendar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/calendar.cpp b/src/lib/utils/calendar.cpp index 1ff5a642d..db933e648 100644 --- a/src/lib/utils/calendar.cpp +++ b/src/lib/utils/calendar.cpp @@ -137,7 +137,7 @@ std::chrono::system_clock::time_point calendar_point::to_std_timepoint() const #if defined(BOTAN_TARGET_OS_HAS_TIMEGM) std::time_t (&botan_timegm)(std::tm *tm) = ::timegm; #elif defined(BOTAN_TARGET_OS_HAS_MKGMTIME) && defined(BOTAN_BUILD_COMPILER_IS_MSVC) - // http://stackoverflow.com/questions/16647819/timegm-cross-platform + // https://stackoverflow.com/questions/16647819/timegm-cross-platform std::time_t (&botan_timegm)(std::tm *tm) = ::_mkgmtime; #elif defined(BOTAN_HAS_BOOST_DATETIME) std::time_t (&botan_timegm)(std::tm *tm) = boost_timegm; |