| 52 | } |
| 53 | |
| 54 | char *md_timeperiod_print(apr_pool_t *p, const md_timeperiod_t *period) |
| 55 | { |
| 56 | char tstart[APR_RFC822_DATE_LEN]; |
| 57 | char tend[APR_RFC822_DATE_LEN]; |
| 58 | |
| 59 | apr_rfc822_date(tstart, period->start); |
| 60 | apr_rfc822_date(tend, period->end); |
| 61 | return apr_pstrcat(p, tstart, " - ", tend, NULL); |
| 62 | } |
| 63 | |
| 64 | static const char *duration_print(apr_pool_t *p, int roughly, apr_interval_time_t duration) |
| 65 | { |
no outgoing calls
no test coverage detected