Home
last modified time | relevance | path

Searched refs:thetime (Results 1 – 1 of 1) sorted by relevance

/PHP-7.3/ext/openssl/
H A Dopenssl.c933 struct tm thetime; in php_openssl_asn1_time_to_time_t() local
963 memset(&thetime, 0, sizeof(thetime)); in php_openssl_asn1_time_to_time_t()
970 thetime.tm_sec = 0; in php_openssl_asn1_time_to_time_t()
972 thetime.tm_sec = atoi(thestr); in php_openssl_asn1_time_to_time_t()
976 thetime.tm_min = atoi(thestr); in php_openssl_asn1_time_to_time_t()
979 thetime.tm_hour = atoi(thestr); in php_openssl_asn1_time_to_time_t()
992 if (thetime.tm_year < 68) { in php_openssl_asn1_time_to_time_t()
993 thetime.tm_year += 100; in php_openssl_asn1_time_to_time_t()
1001 thetime.tm_isdst = -1; in php_openssl_asn1_time_to_time_t()
1002 ret = mktime(&thetime); in php_openssl_asn1_time_to_time_t()
[all …]

Completed in 31 milliseconds