From 59b7ce91942cae060e2b2b1d4d625d97ebf959e6 Mon Sep 17 00:00:00 2001 From: Richard Wilson Date: Tue, 4 Jul 2006 22:03:39 +0000 Subject: Don't assert() for AUTH or SSL codes (fix 1498477) svn path=/trunk/netsurf/; revision=2713 --- css/css.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'css/css.c') diff --git a/css/css.c b/css/css.c index 8a120eb46..88487fb4a 100644 --- a/css/css.c +++ b/css/css.c @@ -914,6 +914,9 @@ void css_atimport_callback(content_msg msg, struct content *css, c->active--; break; + case CONTENT_MSG_AUTH: + case CONTENT_MSG_SSL: + /* todo: handle AUTH and SSL */ case CONTENT_MSG_ERROR: c->data.css.import_content[i] = 0; c->active--; -- cgit v1.2.3