diff options
| author | tb <> | 2022-06-07 17:22:22 +0000 |
|---|---|---|
| committer | tb <> | 2022-06-07 17:22:22 +0000 |
| commit | 434700d4c6a7a7fe6343e9f9d1adfc99658434ea (patch) | |
| tree | 6ecbd460bce0398a7f1b3a6363391c66560800c2 /src | |
| parent | e0a68620a89ee656d656102d7ae49466cc41730c (diff) | |
| download | openbsd-434700d4c6a7a7fe6343e9f9d1adfc99658434ea.tar.gz openbsd-434700d4c6a7a7fe6343e9f9d1adfc99658434ea.tar.bz2 openbsd-434700d4c6a7a7fe6343e9f9d1adfc99658434ea.zip | |
Drop an unnecessary cast
ok jsing
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/libssl/ssl_txt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/ssl_txt.c b/src/lib/libssl/ssl_txt.c index b7da7bb6b4..cb14ccc855 100644 --- a/src/lib/libssl/ssl_txt.c +++ b/src/lib/libssl/ssl_txt.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ssl_txt.c,v 1.33 2022/06/06 16:12:31 tb Exp $ */ | 1 | /* $OpenBSD: ssl_txt.c,v 1.34 2022/06/07 17:22:22 tb Exp $ */ |
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
| 3 | * All rights reserved. | 3 | * All rights reserved. |
| 4 | * | 4 | * |
| @@ -153,7 +153,7 @@ SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) | |||
| 153 | if (BIO_puts(bp, "\n Master-Key: ") <= 0) | 153 | if (BIO_puts(bp, "\n Master-Key: ") <= 0) |
| 154 | goto err; | 154 | goto err; |
| 155 | 155 | ||
| 156 | for (i = 0; i < (unsigned int)x->master_key_length; i++) { | 156 | for (i = 0; i < x->master_key_length; i++) { |
| 157 | if (BIO_printf(bp, "%02X", x->master_key[i]) <= 0) | 157 | if (BIO_printf(bp, "%02X", x->master_key[i]) <= 0) |
| 158 | goto err; | 158 | goto err; |
| 159 | } | 159 | } |
