diff options
author | guenther <> | 2017-10-07 06:16:54 +0000 |
---|---|---|
committer | guenther <> | 2017-10-07 06:16:54 +0000 |
commit | 66675c46048c179cf16977ae4841f1d6840ca4f9 (patch) | |
tree | 6e1ddec8981078151c1acc8b643be6c549170c83 /src | |
parent | 1c25be50aed46b2e65dd264059575fe05a221050 (diff) | |
download | openbsd-66675c46048c179cf16977ae4841f1d6840ca4f9.tar.gz openbsd-66675c46048c179cf16977ae4841f1d6840ca4f9.tar.bz2 openbsd-66675c46048c179cf16977ae4841f1d6840ca4f9.zip |
Fix cast-pasto's in comments
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.bin/openssl/speed.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr.bin/openssl/speed.c b/src/usr.bin/openssl/speed.c index 0ca87687bd..90cf6de011 100644 --- a/src/usr.bin/openssl/speed.c +++ b/src/usr.bin/openssl/speed.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: speed.c,v 1.19 2016/08/22 04:33:07 deraadt Exp $ */ | 1 | /* $OpenBSD: speed.c,v 1.20 2017/10/07 06:16:54 guenther 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 | * |
@@ -538,7 +538,7 @@ speed_main(int argc, char **argv) | |||
538 | doit[D_EVP] = 1; | 538 | doit[D_EVP] = 1; |
539 | } else if (argc > 0 && !strcmp(*argv, "-decrypt")) { | 539 | } else if (argc > 0 && !strcmp(*argv, "-decrypt")) { |
540 | decrypt = 1; | 540 | decrypt = 1; |
541 | j--; /* Otherwise, -elapsed gets confused with an | 541 | j--; /* Otherwise, -decrypt gets confused with an |
542 | * algorithm. */ | 542 | * algorithm. */ |
543 | } | 543 | } |
544 | else if ((argc > 0) && (strcmp(*argv, "-multi") == 0)) { | 544 | else if ((argc > 0) && (strcmp(*argv, "-multi") == 0)) { |
@@ -553,7 +553,7 @@ speed_main(int argc, char **argv) | |||
553 | BIO_printf(bio_err, "bad multi count: %s", errstr); | 553 | BIO_printf(bio_err, "bad multi count: %s", errstr); |
554 | goto end; | 554 | goto end; |
555 | } | 555 | } |
556 | j--; /* Otherwise, -mr gets confused with an | 556 | j--; /* Otherwise, -multi gets confused with an |
557 | * algorithm. */ | 557 | * algorithm. */ |
558 | } | 558 | } |
559 | else if (argc > 0 && !strcmp(*argv, "-mr")) { | 559 | else if (argc > 0 && !strcmp(*argv, "-mr")) { |