From f4e19d51d0d0367163a005cf74bbebd5325af80b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20Andr=C3=A9=20Vadla=20Ravn=C3=A5s?= Date: Mon, 22 Mar 2010 16:19:00 +0100 Subject: [PATCH 03/12] Fix a trivial warning where guint was used instead of WockyTLSCertStatus --- wocky/wocky-connector.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/wocky/wocky-connector.c b/wocky/wocky-connector.c index e7196fe..791fdf2 100644 --- a/wocky/wocky-connector.c +++ b/wocky/wocky-connector.c @@ -1554,7 +1554,7 @@ starttls_handshake_cb (GObject *source, const gchar *tla = priv->legacy_ssl ? "SSL" : "TLS"; long flags = WOCKY_TLS_VERIFY_NORMAL; const gchar *peer = NULL; - guint status = WOCKY_TLS_CERT_UNKNOWN_ERROR; + WockyTLSCertStatus status = WOCKY_TLS_CERT_UNKNOWN_ERROR; priv->tls = wocky_tls_session_handshake_finish (sess, res, &error); DEBUG ("completed %s handshake", tla); -- 1.6.4.msysgit.0