CVS: cvs.openbsd.org: src
Claudio Jeker <[email protected]>
| Newsgroups | gmane.os.openbsd.cvs |
|---|---|
| Message-ID | <[email protected]> |
CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/07/07 07:38:54 Modified files: usr.sbin/rpki-client: print.c output-json.c output-bird.c output-bgpd.c Log message: ASnum are unsigned 32bit values. Use %u to print them not %d. Also use json_do_uint() just to be consistent. The json encoder operates with 64bit values so it does not matter there as much as it does for printf. With and OK tb@