Searched refs:k_tm (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.1-release/crypto/openssl/ssl/
H A Dkssl.c1882 static struct tm *k_gmtime(ASN1_GENERALIZEDTIME *gtime, struct tm *k_tm) argument
1886 if (!k_tm)
1898 k_tm->tm_sec = atoi(p);
1903 k_tm->tm_min = atoi(p);
1908 k_tm->tm_hour = atoi(p);
1913 k_tm->tm_mday = atoi(p);
1918 k_tm->tm_mon = atoi(p) - 1;
1923 k_tm->tm_year = atoi(p) - 1900;
1926 return k_tm;

Completed in 43 milliseconds