diff options
author | John Polstra <jdp@FreeBSD.org> | 2007-01-22 01:56:03 +0000 |
---|---|---|
committer | John Polstra <jdp@FreeBSD.org> | 2007-01-22 01:56:03 +0000 |
commit | 7acb00d7e224791869406576f8eb04d7b54156a0 (patch) | |
tree | 5183d001b26d69ee51023f219d677133441e513d /sysutils | |
parent | d7813d9326aeb211645c5277067907dc0d1a1014 (diff) | |
download | ports-7acb00d7e224791869406576f8eb04d7b54156a0.tar.gz ports-7acb00d7e224791869406576f8eb04d7b54156a0.zip |
Notes
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/ipmitool/files/patch-lanplus.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sysutils/ipmitool/files/patch-lanplus.c b/sysutils/ipmitool/files/patch-lanplus.c new file mode 100644 index 000000000000..1c1de1436045 --- /dev/null +++ b/sysutils/ipmitool/files/patch-lanplus.c @@ -0,0 +1,11 @@ +--- src/plugins/lanplus/lanplus.c.orig Fri Apr 21 09:34:30 2006 ++++ src/plugins/lanplus/lanplus.c Thu Jan 18 21:12:54 2007 +@@ -2456,7 +2456,7 @@ + { + struct ipmi_rs * rsp = ipmi_lan_poll_recv(intf); + +- if(rsp->session.authtype != 0) ++ if(rsp != NULL && rsp->session.authtype != 0) + { + ack_sol_packet(intf, rsp); + |