diff options
author | 2017-06-29 03:48:44 +0000 | |
---|---|---|
committer | 2017-06-29 03:48:44 +0000 | |
commit | 8ad1e6fc0871dabf51cfdf60e3d14767ecb7a6e8 (patch) | |
tree | 19c7e1fc3d6f79ab8560b6146c8a6e06b115bbba | |
parent | take const off the timeval argument in the pending functions. (diff) | |
download | wireguard-openbsd-8ad1e6fc0871dabf51cfdf60e3d14767ecb7a6e8.tar.xz wireguard-openbsd-8ad1e6fc0871dabf51cfdf60e3d14767ecb7a6e8.zip |
set c.c_maxrxlen to something. apparently lost a line somewhere.
maybe it works now? :)
from Colin Stolley via Paul B. Henson
-rw-r--r-- | sys/dev/ipmi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ipmi.c b/sys/dev/ipmi.c index b78d1d43ff6..07bc1c87863 100644 --- a/sys/dev/ipmi.c +++ b/sys/dev/ipmi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipmi.c,v 1.97 2016/06/07 01:31:54 tedu Exp $ */ +/* $OpenBSD: ipmi.c,v 1.98 2017/06/29 03:48:44 tedu Exp $ */ /* * Copyright (c) 2015 Masao Uebayashi @@ -1094,6 +1094,7 @@ get_sdr_partial(struct ipmi_softc *sc, u_int16_t recordId, u_int16_t reserveId, c.c_cmd = STORAGE_GET_SDR; c.c_txlen = IPMI_SET_WDOG_MAX; c.c_rxlen = 0; + c.c_maxrxlen = 8 + length; c.c_data = cmd; ipmi_cmd(&c); len = c.c_rxlen; |