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: [email protected]
Reporter: [email protected]
... 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.