| 923 | } |
| 924 | |
| 925 | static void strip_timestamp(const char *bol, const char **eol_p) |
| 926 | { |
| 927 | const char *eol = *eol_p; |
| 928 | |
| 929 | while (bol < --eol) { |
| 930 | if (*eol != '>') |
| 931 | continue; |
| 932 | *eol_p = ++eol; |
| 933 | break; |
| 934 | } |
| 935 | } |
| 936 | |
| 937 | static struct { |
| 938 | const char *field; |