Live code cleanup; #if 1 removal

A few minor cleanups to remove pre-processor "#if 1" stuff.

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Rich Salz
2015-02-05 11:47:02 -05:00
parent 7e35f06ea9
commit 8dd94afb18
4 changed files with 0 additions and 14 deletions

View File

@@ -245,7 +245,6 @@ int SSL_clear(SSL *s)
s->first_packet = 0;
#if 1
/*
* Check to see if we were changed into a different method, if so, revert
* back if we are not doing session-id reuse.
@@ -257,7 +256,6 @@ int SSL_clear(SSL *s)
if (!s->method->ssl_new(s))
return (0);
} else
#endif
s->method->ssl_clear(s);
return (1);
}