summaryrefslogtreecommitdiff
path: root/ext/dtls/gstdtlsconnection.c
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2018-11-28 13:35:35 +0200
committerTim-Philipp Müller <tim@centricular.com>2018-11-28 14:18:26 +0000
commit1f562870ee16ee2cbfc94022bf84894c95ee5f7c (patch)
tree8f413e02f4dd22de1a2f711838ab5faa9a8f00bc /ext/dtls/gstdtlsconnection.c
parent465ea32d73be9c1ca2ec96ff1319bf136a9aa3b6 (diff)
downloadgstreamer-plugins-bad-1f562870ee16ee2cbfc94022bf84894c95ee5f7c.tar.gz
Run gst-indent through the files
This is required before we enabled an indent test in the CI. https://gitlab.freedesktop.org/gstreamer/gstreamer-project/issues/33
Diffstat (limited to 'ext/dtls/gstdtlsconnection.c')
-rw-r--r--ext/dtls/gstdtlsconnection.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/dtls/gstdtlsconnection.c b/ext/dtls/gstdtlsconnection.c
index 6b6e90c53..ab43ee741 100644
--- a/ext/dtls/gstdtlsconnection.c
+++ b/ext/dtls/gstdtlsconnection.c
@@ -602,13 +602,13 @@ log_state (GstDtlsConnection * self, const gchar * str)
GstDtlsConnectionPrivate *priv = self->priv;
guint states = 0;
- states |= (!!SSL_is_init_finished (priv->ssl) << 0);
- states |= (!!SSL_in_init (priv->ssl) << 4);
- states |= (!!SSL_in_before (priv->ssl) << 8);
- states |= (!!SSL_in_connect_init (priv->ssl) << 12);
- states |= (!!SSL_in_accept_init (priv->ssl) << 16);
- states |= (!!SSL_want_write (priv->ssl) << 20);
- states |= (!!SSL_want_read (priv->ssl) << 24);
+ states |= (! !SSL_is_init_finished (priv->ssl) << 0);
+ states |= (! !SSL_in_init (priv->ssl) << 4);
+ states |= (! !SSL_in_before (priv->ssl) << 8);
+ states |= (! !SSL_in_connect_init (priv->ssl) << 12);
+ states |= (! !SSL_in_accept_init (priv->ssl) << 16);
+ states |= (! !SSL_want_write (priv->ssl) << 20);
+ states |= (! !SSL_want_read (priv->ssl) << 24);
#if OPENSSL_VERSION_NUMBER < 0x10100001L
GST_LOG_OBJECT (self, "%s: role=%s buf=(%d,%p:%d/%d) %x|%x %s",