diff options
author | 2019-12-02 02:05:06 +0000 | |
---|---|---|
committer | 2019-12-02 02:05:06 +0000 | |
commit | e0ca9872aad75ca474a34e04a5106e3e8647fa78 (patch) | |
tree | 3cd928f428574ada0a0bd31e4fd7076a17396034 | |
parent | For 32 bit systems, cast the long long used by strtoll() to unsigned long (diff) | |
download | wireguard-openbsd-e0ca9872aad75ca474a34e04a5106e3e8647fa78.tar.xz wireguard-openbsd-e0ca9872aad75ca474a34e04a5106e3e8647fa78.zip |
missing | leads to incompete results
-rw-r--r-- | usr.sbin/rpki-client/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/main.c b/usr.sbin/rpki-client/main.c index a53a995e884..8e7b9ead93b 100644 --- a/usr.sbin/rpki-client/main.c +++ b/usr.sbin/rpki-client/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.49 2019/11/30 22:55:22 jmc Exp $ */ +/* $OpenBSD: main.c,v 1.50 2019/12/02 02:05:06 deraadt Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -1454,7 +1454,7 @@ main(int argc, char *argv[]) force = 1; break; case 'j': - outformats = FORMAT_JSON; + outformats |= FORMAT_JSON; break; case 'n': noop = 1; |