comparison libpurple/plugins/ssl/ssl-gnutls.c @ 17500:c5913175c5d2

- Fixed the lack of callbackness
author William Ehlhardt <williamehlhardt@gmail.com>
date Tue, 29 May 2007 21:11:08 +0000
parents 53bd10a83322
children 7b23e93dfe22 7ed10c051820
comparison
equal deleted inserted replaced
17498:53bd10a83322 17500:c5913175c5d2
222 g_free(fpr_asc); 222 g_free(fpr_asc);
223 g_free(ser_asc); 223 g_free(ser_asc);
224 224
225 gnutls_x509_crt_deinit(cert); 225 gnutls_x509_crt_deinit(cert);
226 } /* if (0 == ... */ 226 } /* if (0 == ... */
227
228 purple_debug_info("gnutls","Requested user verification for certificate from %s\n", gsc->host);
227 } 229 }
228 230
229 static void ssl_gnutls_handshake_cb(gpointer data, gint source, 231 static void ssl_gnutls_handshake_cb(gpointer data, gint source,
230 PurpleInputCondition cond) 232 PurpleInputCondition cond)
231 { 233 {
326 } /* for */ 328 } /* for */
327 329
328 } /* End keydata spitting */ 330 } /* End keydata spitting */
329 331
330 /* Ask for cert verification */ 332 /* Ask for cert verification */
333 ssl_gnutls_authcheck_ask(gsc);
331 } 334 }
332 335
333 } 336 }
334 337
335 338