You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@serf.apache.org by st...@apache.org on 2016/12/20 10:25:55 UTC

svn commit: r1775251 - /serf/trunk/buckets/ssl_buckets.c

Author: stsp
Date: Tue Dec 20 10:25:55 2016
New Revision: 1775251

URL: http://svn.apache.org/viewvc?rev=1775251&view=rev
Log:
* buckets/ssl_buckets.c: Put parens around the argument passed to
   the X509_STORE_get0_param macro as well.

Suggested by: brane

Modified:
    serf/trunk/buckets/ssl_buckets.c

Modified: serf/trunk/buckets/ssl_buckets.c
URL: http://svn.apache.org/viewvc/serf/trunk/buckets/ssl_buckets.c?rev=1775251&r1=1775250&r2=1775251&view=diff
==============================================================================
--- serf/trunk/buckets/ssl_buckets.c (original)
+++ serf/trunk/buckets/ssl_buckets.c Tue Dec 20 10:25:55 2016
@@ -54,7 +54,7 @@
 #endif
 
 #ifdef SERF_NO_SSL_X509_STORE_WRAPPERS
-#define X509_STORE_get0_param(store) (store->param)
+#define X509_STORE_get0_param(store) ((store)->param)
 #endif