summaryrefslogtreecommitdiff
path: root/frontends/monkey/cert.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2020-02-23 17:19:45 +0000
committerVincent Sanders <vince@kyllikki.org>2020-02-23 17:19:45 +0000
commit7039973a1f886fb5651c94495a042eba5940a4d9 (patch)
tree677051adea8de9fc03b4501225ed7e2aaabc37fa /frontends/monkey/cert.h
parent0c34d06494afe217ace7460c66df800d457dd2e8 (diff)
downloadnetsurf-7039973a1f886fb5651c94495a042eba5940a4d9.tar.gz
netsurf-7039973a1f886fb5651c94495a042eba5940a4d9.tar.bz2
fix frontends to cope with certificate chain update
Diffstat (limited to 'frontends/monkey/cert.h')
-rw-r--r--frontends/monkey/cert.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontends/monkey/cert.h b/frontends/monkey/cert.h
index 56feea782..ff499ed16 100644
--- a/frontends/monkey/cert.h
+++ b/frontends/monkey/cert.h
@@ -19,11 +19,11 @@
#ifndef NETSURF_MONKEY_CERT_H
#define NETSURF_MONKEY_CERT_H
-struct ssl_cert_info;
+struct cert_chain;
-nserror gui_cert_verify(nsurl *url, const struct ssl_cert_info *certs,
- unsigned long num, nserror (*cb)(bool proceed, void *pw),
- void *cbpw);
+nserror gui_cert_verify(nsurl *url, const struct cert_chain *certs,
+ nserror (*cb)(bool proceed, void *pw),
+ void *cbpw);
void monkey_sslcert_handle_command(int argc, char **argv);