Searched refs:thetime (Results 1 – 1 of 1) sorted by relevance
707 struct tm thetime; in asn1_time_to_time_t() local734 memset(&thetime, 0, sizeof(thetime)); in asn1_time_to_time_t()740 thetime.tm_sec = atoi(thestr); in asn1_time_to_time_t()743 thetime.tm_min = atoi(thestr); in asn1_time_to_time_t()746 thetime.tm_hour = atoi(thestr); in asn1_time_to_time_t()749 thetime.tm_mday = atoi(thestr); in asn1_time_to_time_t()759 if (thetime.tm_year < 68) { in asn1_time_to_time_t()760 thetime.tm_year += 100; in asn1_time_to_time_t()768 thetime.tm_isdst = -1; in asn1_time_to_time_t()769 ret = mktime(&thetime); in asn1_time_to_time_t()[all …]
Completed in 14 milliseconds