diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2024-07-12 08:54:49 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2024-07-12 08:54:49 +0000 |
commit | 0b80efa3228faef0d57f93627141b7d98f18a43b (patch) | |
tree | ddc8d0d3265d918224095b3585298ff9d6215f75 /usr.sbin/rpki-client | |
parent | 204575674eac1cd777888b4c0a7644f2c97915dd (diff) |
Rename the variable c to ok. It returns if the file failed to parse or not.
We need to pass this to filepath_add so lets use a better name.
OK tb@
Diffstat (limited to 'usr.sbin/rpki-client')
-rw-r--r-- | usr.sbin/rpki-client/main.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/usr.sbin/rpki-client/main.c b/usr.sbin/rpki-client/main.c index 342548ce3ec..780f40e7c35 100644 --- a/usr.sbin/rpki-client/main.c +++ b/usr.sbin/rpki-client/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.260 2024/06/08 13:31:38 tb Exp $ */ +/* $OpenBSD: main.c,v 1.261 2024/07/12 08:54:48 claudio Exp $ */ /* * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org> * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> @@ -577,7 +577,7 @@ entity_process(struct ibuf *b, struct stats *st, struct vrp_tree *tree, time_t mtime; unsigned int id; int talid; - int c; + int ok = 1; /* * For most of these, we first read whether there's any content @@ -611,8 +611,8 @@ entity_process(struct ibuf *b, struct stats *st, struct vrp_tree *tree, tal_free(tal); break; case RTYPE_CER: - io_read_buf(b, &c, sizeof(c)); - if (c == 0) { + io_read_buf(b, &ok, sizeof(ok)); + if (ok == 0) { repo_stat_inc(rp, talid, type, STYPE_FAIL); break; } @@ -633,8 +633,8 @@ entity_process(struct ibuf *b, struct stats *st, struct vrp_tree *tree, cert_free(cert); break; case RTYPE_MFT: - io_read_buf(b, &c, sizeof(c)); - if (c == 0) { + io_read_buf(b, &ok, sizeof(ok)); + if (ok == 0) { repo_stat_inc(rp, talid, type, STYPE_FAIL); break; } @@ -647,8 +647,8 @@ entity_process(struct ibuf *b, struct stats *st, struct vrp_tree *tree, entity_queue++; break; case RTYPE_ROA: - io_read_buf(b, &c, sizeof(c)); - if (c == 0) { + io_read_buf(b, &ok, sizeof(ok)); + if (ok == 0) { repo_stat_inc(rp, talid, type, STYPE_FAIL); break; } @@ -662,8 +662,8 @@ entity_process(struct ibuf *b, struct stats *st, struct vrp_tree *tree, case RTYPE_GBR: break; case RTYPE_ASPA: - io_read_buf(b, &c, sizeof(c)); - if (c == 0) { + io_read_buf(b, &ok, sizeof(ok)); + if (ok == 0) { repo_stat_inc(rp, talid, type, STYPE_FAIL); break; } @@ -675,8 +675,8 @@ entity_process(struct ibuf *b, struct stats *st, struct vrp_tree *tree, aspa_free(aspa); break; case RTYPE_SPL: - io_read_buf(b, &c, sizeof(c)); - if (c == 0) { + io_read_buf(b, &ok, sizeof(ok)); + if (ok == 0) { if (experimental) repo_stat_inc(rp, talid, type, STYPE_FAIL); break; |