summaryrefslogtreecommitdiff
path: root/src/lib/libssl/d1_clnt.c
diff options
context:
space:
mode:
authortedu <>2014-04-17 21:41:12 +0000
committertedu <>2014-04-17 21:41:12 +0000
commit1936e2003fe91f2742c69504d76f935e6cadee40 (patch)
tree65132e9075fbf29e382f4123bd9fd7f429b552e5 /src/lib/libssl/d1_clnt.c
parent153e0cd77b7a56682f71acec88a0c318e197fcb3 (diff)
downloadopenbsd-1936e2003fe91f2742c69504d76f935e6cadee40.tar.gz
openbsd-1936e2003fe91f2742c69504d76f935e6cadee40.tar.bz2
openbsd-1936e2003fe91f2742c69504d76f935e6cadee40.zip
no longer need to fool emacs indentation and other if (0) oddities.
Diffstat (limited to 'src/lib/libssl/d1_clnt.c')
-rw-r--r--src/lib/libssl/d1_clnt.c5
1 files changed, 1 insertions, 4 deletions
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)
945 945
946 alg_k = s->s3->tmp.new_cipher->algorithm_mkey; 946 alg_k = s->s3->tmp.new_cipher->algorithm_mkey;
947 947
948 /* Fool emacs indentation */ 948 if (alg_k & SSL_kRSA) {
949 if (0) {
950 }
951 else if (alg_k & SSL_kRSA) {
952 RSA *rsa; 949 RSA *rsa;
953 unsigned char tmp_buf[SSL_MAX_MASTER_KEY_LENGTH]; 950 unsigned char tmp_buf[SSL_MAX_MASTER_KEY_LENGTH];
954 951