CVS: cvs.openbsd.org: src
Claudio Jeker <[email protected]> Tue, 21 Jul 2026 02:02:21 -0600 (MDT)
| Newsgroups | gmane.os.openbsd.cvs |
|---|---|
| Message-ID | <[email protected]> |
CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/07/21 02:02:21 Modified files: usr.sbin/bgpd : bgpd.h Log message: Switch a few uint32_t to unsigned int where it makes sense. Instead of mixing uint32_t with unsigned long long use unsigned int for those. In most cases those are simple counts that can't get too big. The same is the case for max_prefix and max_out_prefix. There is no good reason to use uint32_t there. OK tb@