summaryrefslogtreecommitdiff
path: root/windows/gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'windows/gui.c')
-rw-r--r--windows/gui.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/windows/gui.c b/windows/gui.c
index ab36d92dd..047b2b9be 100644
--- a/windows/gui.c
+++ b/windows/gui.c
@@ -2274,13 +2274,14 @@ void gui_launch_url(const char *url)
{
}
-void gui_cert_verify(struct browser_window *bw, 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);
}
-
static void *myrealloc(void *ptr, size_t len, void *pw)
{
return realloc(ptr, len);