diff options
author | tb <> | 2021-12-26 15:44:29 +0000 |
---|---|---|
committer | tb <> | 2021-12-26 15:44:29 +0000 |
commit | 2ff232a7ae3136fc0b5bc80b8e582b790fdf364e (patch) | |
tree | 43715468199279fdbc48d693325fc9b2b98c8080 /src/lib/libcrypto | |
parent | d50edb3a8245ec1d4c4f77c5ec34ea0e3364666f (diff) | |
download | openbsd-2ff232a7ae3136fc0b5bc80b8e582b790fdf364e.tar.gz openbsd-2ff232a7ae3136fc0b5bc80b8e582b790fdf364e.tar.bz2 openbsd-2ff232a7ae3136fc0b5bc80b8e582b790fdf364e.zip |
zap doubled semicolon
Diffstat (limited to 'src/lib/libcrypto')
-rw-r--r-- | src/lib/libcrypto/x509/x509_constraints.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/x509/x509_constraints.c b/src/lib/libcrypto/x509/x509_constraints.c index f5e1050bb1..ba16d7ebff 100644 --- a/src/lib/libcrypto/x509/x509_constraints.c +++ b/src/lib/libcrypto/x509/x509_constraints.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_constraints.c,v 1.18 2021/10/26 09:09:53 beck Exp $ */ | 1 | /* $OpenBSD: x509_constraints.c,v 1.19 2021/12/26 15:44:29 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2020 Bob Beck <beck@openbsd.org> | 3 | * Copyright (c) 2020 Bob Beck <beck@openbsd.org> |
4 | * | 4 | * |
@@ -390,7 +390,7 @@ x509_constraints_parse_mailbox(uint8_t *candidate, size_t len, | |||
390 | } | 390 | } |
391 | if (c == '@') { | 391 | if (c == '@') { |
392 | if (wi == 0) | 392 | if (wi == 0) |
393 | goto bad;; | 393 | goto bad; |
394 | if (candidate_local != NULL) | 394 | if (candidate_local != NULL) |
395 | goto bad; | 395 | goto bad; |
396 | candidate_local = strdup(working); | 396 | candidate_local = strdup(working); |