summaryrefslogtreecommitdiffstats
path: root/Modules/_ssl.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/_ssl.c')
-rw-r--r--Modules/_ssl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index f7fdbf4..885a9c2 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -5329,7 +5329,11 @@ PySSLSession_clear(PySSLSession *self)
static PyObject *
PySSLSession_get_time(PySSLSession *self, void *closure) {
+#if OPENSSL_VERSION_NUMBER >= 0x30300000L
+ return _PyLong_FromTime_t(SSL_SESSION_get_time_ex(self->session));
+#else
return PyLong_FromLong(SSL_SESSION_get_time(self->session));
+#endif
}
PyDoc_STRVAR(PySSLSession_get_time_doc,