diff options
author | 2017-07-15 17:40:53 +0000 | |
---|---|---|
committer | 2017-07-15 17:40:53 +0000 | |
commit | 285d911919a87858397beb5f25c16a5888e2d84e (patch) | |
tree | d9eb1b87aab01b97718c8e505c6aa161ed125cea /lib/libssl/s3_lib.c | |
parent | use the same width increase logic for .Bl -hang as for .Bl -tag (diff) | |
download | wireguard-openbsd-285d911919a87858397beb5f25c16a5888e2d84e.tar.xz wireguard-openbsd-285d911919a87858397beb5f25c16a5888e2d84e.zip |
Remove unused variable.
Reported by <dravion at ht-foss dot net>
Diffstat (limited to 'lib/libssl/s3_lib.c')
-rw-r--r-- | lib/libssl/s3_lib.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libssl/s3_lib.c b/lib/libssl/s3_lib.c index 98d7c69721d..6486b468c99 100644 --- a/lib/libssl/s3_lib.c +++ b/lib/libssl/s3_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_lib.c,v 1.144 2017/05/07 21:05:05 jsing Exp $ */ +/* $OpenBSD: s3_lib.c,v 1.145 2017/07/15 17:40:53 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1513,10 +1513,10 @@ ssl3_handshake_msg_start(SSL *s, uint8_t msg_type) void ssl3_handshake_msg_finish(SSL *s, unsigned int len) { - unsigned char *d, *p; + unsigned char *p; uint8_t msg_type; - d = p = (unsigned char *)s->internal->init_buf->data; + p = (unsigned char *)s->internal->init_buf->data; /* Handshake message length. */ msg_type = *(p++); |