Increase the size of the property buffer to 8192. 1024 wasn't enough to

retrieve certain nodes.
This commit is contained in:
Jake Burkholder 2003-03-14 16:12:42 +00:00
parent 13141dbc38
commit a24fa5bdb2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112238

View file

@ -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) \