From a4503a1574c68c715fcc611a77a209a119e15345 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 15 Apr 2010 22:32:13 +0000 Subject: Fix framebuffer build svn path=/trunk/netsurf/; revision=10404 --- framebuffer/gui.c | 6 ++++-- framebuffer/login.c | 5 +++-- 2 files changed, 7 insertions(+), 4 deletions(-) (limited to 'framebuffer') diff --git a/framebuffer/gui.c b/framebuffer/gui.c index e691bebdb..d13e9a300 100644 --- a/framebuffer/gui.c +++ b/framebuffer/gui.c @@ -1425,9 +1425,11 @@ void gui_launch_url(const char *url) { } -void gui_cert_verify(struct browser_window *bw, struct hlcache_handle *c, - const struct ssl_cert_info *certs, unsigned long num) +void gui_cert_verify(const char *url, const struct ssl_cert_info *certs, + unsigned long num, + nserror (*cb)(bool proceed, void *pw), void *cbpw) { + cb(false, cbpw); } /* diff --git a/framebuffer/login.c b/framebuffer/login.c index 7cd1cab2e..c1afab350 100644 --- a/framebuffer/login.c +++ b/framebuffer/login.c @@ -18,7 +18,8 @@ #include "desktop/401login.h" -void gui_401login_open(struct browser_window *bw, struct hlcache_handle *c, - const char *realm) +void gui_401login_open(const char *url, const char *realm, + nserror (*cb)(bool proceed, void *pw), void *cbpw) { + cb(false, cbpw); } -- cgit v1.2.3