Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 13 Jun 2026 15:51:27 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 296037] setkey -D's output is limited to 80 columns
Message-ID:  <bug-296037-227@https.bugs.freebsd.org/bugzilla/>

index | next in thread | raw e-mail

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.

home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-296037-227>