summaryrefslogtreecommitdiff
path: root/frontends/atari
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-07-31 01:24:57 +0100
committerVincent Sanders <vince@kyllikki.org>2016-07-31 13:25:20 +0100
commitb939afe3fc70be446d9ffd6e6071a4af5cf98a8a (patch)
tree65c10f7b9d363f20621e2b4429f4eb3c958fa986 /frontends/atari
parent51725592c96b3cb94aa70761b10960c738815534 (diff)
downloadnetsurf-b939afe3fc70be446d9ffd6e6071a4af5cf98a8a.tar.gz
netsurf-b939afe3fc70be446d9ffd6e6071a4af5cf98a8a.tar.bz2
Allow certificate verification user prompt creation to return errors
Diffstat (limited to 'frontends/atari')
-rw-r--r--frontends/atari/gui.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontends/atari/gui.c b/frontends/atari/gui.c
index 713db8bb3..eb15777b4 100644
--- a/frontends/atari/gui.c
+++ b/frontends/atari/gui.c
@@ -771,7 +771,7 @@ static void gui_401login_open(nsurl *url, const char *realm,
}
-static void
+static nserror
gui_cert_verify(nsurl *url, const struct ssl_cert_info *certs,
unsigned long num, nserror (*cb)(bool proceed, void *pw),
void *cbpw)
@@ -795,7 +795,7 @@ gui_cert_verify(nsurl *url, const struct ssl_cert_info *certs,
&data);
atari_sslcert_viewer_open(data);
}
-
+ return NSERROR_OK;
}
void gui_set_input_gui_window(struct gui_window *gw)