diff options
author | Anders Carlsson <andersca@codefactory.se> | 2001-05-02 03:44:45 +0800 |
---|---|---|
committer | Anders Carlsson <andersca@src.gnome.org> | 2001-05-02 03:44:45 +0800 |
commit | d3bcd3e9d6422bfe485c615823768525aafbc966 (patch) | |
tree | 7741a10ff1beeeb75006910f50a48011b9209268 | |
parent | 6a5e6fbbeaa4e32cd2058019ae87132beba79429 (diff) | |
download | gsoc2013-evolution-d3bcd3e9d6422bfe485c615823768525aafbc966.tar gsoc2013-evolution-d3bcd3e9d6422bfe485c615823768525aafbc966.tar.gz gsoc2013-evolution-d3bcd3e9d6422bfe485c615823768525aafbc966.tar.bz2 gsoc2013-evolution-d3bcd3e9d6422bfe485c615823768525aafbc966.tar.lz gsoc2013-evolution-d3bcd3e9d6422bfe485c615823768525aafbc966.tar.xz gsoc2013-evolution-d3bcd3e9d6422bfe485c615823768525aafbc966.tar.zst gsoc2013-evolution-d3bcd3e9d6422bfe485c615823768525aafbc966.zip |
Remove the last argument from camel_session_alert_user.
2001-05-01 Anders Carlsson <andersca@codefactory.se>
* camel-tcp-stream-ssl.c (ssl_bad_cert): Remove the last argument from
camel_session_alert_user.
svn path=/trunk/; revision=9640
-rw-r--r-- | camel/camel-tcp-stream-ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-tcp-stream-ssl.c b/camel/camel-tcp-stream-ssl.c index 7fa81484da..2a9a0fb602 100644 --- a/camel/camel-tcp-stream-ssl.c +++ b/camel/camel-tcp-stream-ssl.c @@ -366,7 +366,7 @@ ssl_bad_cert (void *data, PRFileDesc *sockfd) g_free (cert_str); /* query the user to find out if we want to accept this certificate */ - accept = camel_session_alert_user (service->session, CAMEL_SESSION_ALERT_WARNING, prompt, TRUE, NULL); + accept = camel_session_alert_user (service->session, CAMEL_SESSION_ALERT_WARNING, prompt, TRUE); g_free (prompt); if (accept) |