[Bug 296037] setkey -D's output is limited to 80 columns
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 13 Jun 2026 15:51:27 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=296037
Bug ID: 296037
Summary: setkey -D's output is limited to 80 columns
Product: Base System
Version: CURRENT
Hardware: Any
OS: Any
Status: New
Severity: Affects Some People
Priority: ---
Component: bin
Assignee: bugs@FreeBSD.org
Reporter: andrew.cagney@gmail.com
... which is so '80's.
specifically:
```
void
ipsec_hexdump(caddr_t buf, int len)
{
int i;
for (i = 0; i < len; i++) {
if (i != 0 && i % 32 == 0) printf("\n");
if (i % 4 == 0) printf(" ");
printf("%02x", (unsigned char)buf[i]);
}
#if 0
if (i % 32 != 0) printf("\n");
#endif
return;
}
```
A way to turn this off would be nice.
--
You are receiving this mail because:
You are the assignee for the bug.