From f1bd47ae146f0890fc710495cbef060e483996a3 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Sat, 17 Aug 2013 17:18:56 +0200 Subject: [PATCH] Issue #18768: coding style nitpick. Thanks to Vajrasky Kok --- Modules/_ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 3ff76a583c32..10fb4029e3b4 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -743,7 +743,7 @@ _get_peer_alt_names (X509 *certificate) { ASN1_STRING *as = NULL; name = sk_GENERAL_NAME_value(names, j); - gntype = name-> type; + gntype = name->type; switch (gntype) { case GEN_DIRNAME: /* we special-case DirName as a tuple of -- 2.47.3