comparison libpurple/protocols/novell/novell.c @ 20792:682543aced31

Split the "you don't have SSL support" meaning of PURPLE_REASON_ENCRYPTION_ERROR into a new reason, PURPLE_REASON_NO_SSL_SUPPORT. This will let UIs give proper errors that reference the SSLfaq!
author Will Thompson <will.thompson@collabora.co.uk>
date Sat, 06 Oct 2007 12:05:22 +0000
parents 8174f6999308
children efa448405f3d
comparison
equal deleted inserted replaced
20791:0f607b50279c 20792:682543aced31
2207 user->conn->addr, user->conn->port, 2207 user->conn->addr, user->conn->port,
2208 novell_ssl_connected_cb, novell_ssl_connect_error, gc); 2208 novell_ssl_connected_cb, novell_ssl_connect_error, gc);
2209 if (user->conn->ssl_conn->data == NULL) { 2209 if (user->conn->ssl_conn->data == NULL) {
2210 gc->wants_to_die = TRUE; 2210 gc->wants_to_die = TRUE;
2211 purple_connection_error_reason (gc, 2211 purple_connection_error_reason (gc,
2212 PURPLE_REASON_ENCRYPTION_ERROR, 2212 PURPLE_REASON_NO_SSL_SUPPORT,
2213 _("Error. SSL support is not installed.")); 2213 _("Error. SSL support is not installed."));
2214 } 2214 }
2215 } 2215 }
2216 } 2216 }
2217 2217