From 38b698b22b3c4945ef9ba07e5acf1968c7d2a9a5 Mon Sep 17 00:00:00 2001
From: Fabian Keil <fk@fabiankeil.de>
Date: Mon, 1 Jun 2009 20:15:53 +0200
Subject: [PATCH 10/10] Fix dead store. Either the 'done = 1' or the 'break' are enough to leave the loop. The else block doesn't break, so don't break from the 'else if' block either.

---
 lib/ssluse.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git lib/ssluse.c lib/ssluse.c
index acf7529..9a0f60e 100644
--- lib/ssluse.c
+++ lib/ssluse.c
@@ -857,7 +857,6 @@ int Curl_ossl_shutdown(struct connectdata *conn, int sockindex)
         /* timeout */
         failf(data, "SSL shutdown timeout");
         done = 1;
-        break;
       }
       else {
         /* anything that gets here is fatally bad */
-- 
1.6.3.1


