Lines Matching defs:timespec
1965 parse_cert_times(char *timespec)
1971 /* +timespec relative to now */
1972 if (*timespec == '+' && strchr(timespec, ':') == NULL) {
1973 if ((secs = convtime(timespec + 1)) == -1)
1974 fatal("Invalid relative certificate life %s", timespec);
1986 * from := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | 0x... | "always"
1987 * to := [+-]timespec | YYYYMMDD | YYYYMMDDHHMMSS | 0x... | "forever"
1989 from = xstrdup(timespec);
1992 fatal("Invalid certificate life specification %s", timespec);