diff options
author | tb <> | 2024-02-04 13:08:29 +0000 |
---|---|---|
committer | tb <> | 2024-02-04 13:08:29 +0000 |
commit | a77d59091c46b5df6e71aa665aabdab326e2318e (patch) | |
tree | f79ff5142c125912f582c3f229425aa32ed9caa1 | |
parent | 40eba5f5fd0fc8e994bc4e41aa0754651f4083c0 (diff) | |
download | openbsd-a77d59091c46b5df6e71aa665aabdab326e2318e.tar.gz openbsd-a77d59091c46b5df6e71aa665aabdab326e2318e.tar.bz2 openbsd-a77d59091c46b5df6e71aa665aabdab326e2318e.zip |
Zap a useless comment followed by a stray semicolon
Noticed by Christian Andersen
-rw-r--r-- | src/usr.bin/openssl/ca.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/ca.c b/src/usr.bin/openssl/ca.c index 1e802a4d74..6fedd22c95 100644 --- a/src/usr.bin/openssl/ca.c +++ b/src/usr.bin/openssl/ca.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ca.c,v 1.57 2023/11/13 12:43:08 tb Exp $ */ | 1 | /* $OpenBSD: ca.c,v 1.58 2024/02/04 13:08:29 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 | * |
@@ -2576,7 +2576,6 @@ get_certificate_status(const char *serial, CA_DB *db) | |||
2576 | goto err; | 2576 | goto err; |
2577 | } | 2577 | } |
2578 | if (strlen(serial) % 2) { | 2578 | if (strlen(serial) % 2) { |
2579 | /* Set the first char to 0 */ ; | ||
2580 | row[DB_serial][0] = '0'; | 2579 | row[DB_serial][0] = '0'; |
2581 | 2580 | ||
2582 | /* Copy String from serial to row[DB_serial] */ | 2581 | /* Copy String from serial to row[DB_serial] */ |