1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00

Factor check_head_for_refresh out of process_head

This commit is contained in:
Miciah Dashiel Butler Masters 2007-09-04 12:09:19 +00:00 committed by Miciah Dashiel Butler Masters
parent 2d0180d1e7
commit fc12376bf5

View File

@ -296,13 +296,13 @@ parse_old_meta_refresh(unsigned char *str, unsigned char **ret)
if (len) *ret = memacpy(p, len);
}
void
process_head(struct html_context *html_context, unsigned char *head)
static void
check_head_for_refresh(struct html_context *html_context, unsigned char *head)
{
unsigned char *refresh, *url;
refresh = parse_header(head, "Refresh", NULL);
if (refresh) {
if (!refresh) return;
parse_header_param(refresh, "URL", &url);
if (!url) {
@ -359,7 +359,12 @@ process_head(struct html_context *html_context, unsigned char *head)
}
mem_free(refresh);
}
}
void
process_head(struct html_context *html_context, unsigned char *head)
{
check_head_for_refresh(html_context, head);
if (!get_opt_bool("document.cache.ignore_cache_control", NULL)) {
unsigned char *d;