From 1936e2003fe91f2742c69504d76f935e6cadee40 Mon Sep 17 00:00:00 2001 From: tedu <> Date: Thu, 17 Apr 2014 21:41:12 +0000 Subject: no longer need to fool emacs indentation and other if (0) oddities. --- src/lib/libssl/d1_clnt.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/lib/libssl/d1_clnt.c') diff --git a/src/lib/libssl/d1_clnt.c b/src/lib/libssl/d1_clnt.c index 1ad65ba541..b919baf7fa 100644 --- a/src/lib/libssl/d1_clnt.c +++ b/src/lib/libssl/d1_clnt.c @@ -945,10 +945,7 @@ dtls1_send_client_key_exchange(SSL *s) alg_k = s->s3->tmp.new_cipher->algorithm_mkey; - /* Fool emacs indentation */ - if (0) { - } - else if (alg_k & SSL_kRSA) { + if (alg_k & SSL_kRSA) { RSA *rsa; unsigned char tmp_buf[SSL_MAX_MASTER_KEY_LENGTH]; -- cgit v1.2.3-55-g6feb