aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-10-24 15:48:21 -0400
committerJack Lloyd <[email protected]>2017-10-24 15:48:21 -0400
commit4f49a6444127801335dab049f0f0b4419d8d9cc1 (patch)
tree4a7ecc596866ff0e69fc7fce2cd043c1c4fc60e4 /src/lib/utils
parent00d6b7c01429682b4f12d007ad5ce20e8492afda (diff)
Convert http:// links to https:// where possible
Diffstat (limited to 'src/lib/utils')
-rw-r--r--src/lib/utils/calendar.cpp2
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;