Mercurial > pidgin
changeset 18966:a7808973dea8
- Jabber now shows an "unknown error" message when it hits an SSL error it doesn't understand
author | William Ehlhardt <williamehlhardt@gmail.com> |
---|---|
date | Wed, 27 Jun 2007 04:25:55 +0000 |
parents | 7e6950797a17 |
children | cf3d2780138e |
files | libpurple/protocols/jabber/jabber.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/jabber/jabber.c Wed Jun 27 04:17:13 2007 +0000 +++ b/libpurple/protocols/jabber/jabber.c Wed Jun 27 04:25:55 2007 +0000 @@ -501,6 +501,8 @@ case PURPLE_SSL_HANDSHAKE_FAILED: purple_connection_error(gc, _("SSL Handshake Failed")); break; + default: + purple_connection_error(gc, _("Unknown SSL error")); } }