diff options
author | jake <jake@FreeBSD.org> | 2003-03-14 16:12:42 +0000 |
---|---|---|
committer | jake <jake@FreeBSD.org> | 2003-03-14 16:12:42 +0000 |
commit | c1ca54bbb631dc158e0aeb632b033c90506aa667 (patch) | |
tree | 3317ac2210be08d06d14c9d83d0368bdea326c5a /usr.sbin/ofwdump | |
parent | 4b29c29d8cce9d9716f168035fee35a04a68cbf2 (diff) | |
download | FreeBSD-src-c1ca54bbb631dc158e0aeb632b033c90506aa667.zip FreeBSD-src-c1ca54bbb631dc158e0aeb632b033c90506aa667.tar.gz |
Increase the size of the property buffer to 8192. 1024 wasn't enough to
retrieve certain nodes.
Diffstat (limited to 'usr.sbin/ofwdump')
-rw-r--r-- | usr.sbin/ofwdump/ofw_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ofwdump/ofw_util.c b/usr.sbin/ofwdump/ofw_util.c index e6fca8c..7a13652 100644 --- a/usr.sbin/ofwdump/ofw_util.c +++ b/usr.sbin/ofwdump/ofw_util.c @@ -50,7 +50,7 @@ __FBSDID("$FreeBSD$"); #define BYTESPERLINE (CHARSPERLINE / 3) /* Maximum supported property size. */ -#define PROPBUFLEN 1024 +#define PROPBUFLEN 8192 #define OFW_IOCTL(fd, cmd, val) do { \ if (ioctl(fd, cmd, val) == -1) \ |