summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2020-04-03 05:48:58 +0000
committerDamien Miller <djm@cvs.openbsd.org>2020-04-03 05:48:58 +0000
commit04d69f9821e2266017ee3642172e80259c271941 (patch)
tree339af3218dd172ca579d08ad715eb0fb7b2c8a0b /usr.bin/ssh
parent9c65cfb4bd578c0f4d7223d281f57ddc6937aaf3 (diff)
avoid another compiler warning spotted in -portable
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/krl.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/usr.bin/ssh/krl.c b/usr.bin/ssh/krl.c
index 7402e6252c5..9a0f6981137 100644
--- a/usr.bin/ssh/krl.c
+++ b/usr.bin/ssh/krl.c
@@ -14,7 +14,7 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-/* $OpenBSD: krl.c,v 1.49 2020/04/03 04:43:24 djm Exp $ */
+/* $OpenBSD: krl.c,v 1.50 2020/04/03 05:48:57 djm Exp $ */
#include <sys/types.h>
#include <sys/tree.h>
@@ -1368,7 +1368,8 @@ krl_dump(struct ssh_krl *krl, FILE *f)
/* Try to print in a KRL spec-compatible format */
format_timestamp(krl->generated_date, timestamp, sizeof(timestamp));
- fprintf(f, "# KRL version %llu\n", krl->krl_version);
+ fprintf(f, "# KRL version %llu\n",
+ (unsigned long long)krl->krl_version);
fprintf(f, "# Generated at %s\n", timestamp);
if (krl->comment != NULL && *krl->comment != '\0') {
r = INT_MAX;
@@ -1425,11 +1426,13 @@ krl_dump(struct ssh_krl *krl, FILE *f)
free(fp);
}
RB_FOREACH(rs, revoked_serial_tree, &rc->revoked_serials) {
- if (rs->lo == rs->hi)
- fprintf(f, "serial: %llu\n", rs->lo);
- else {
+ if (rs->lo == rs->hi) {
+ fprintf(f, "serial: %llu\n",
+ (unsigned long long)rs->lo);
+ } else {
fprintf(f, "serial: %llu-%llu\n",
- rs->lo, rs->hi);
+ (unsigned long long)rs->lo,
+ (unsigned long long)rs->hi);
}
}
RB_FOREACH(rki, revoked_key_id_tree, &rc->revoked_key_ids) {