update to 1.8.8

This commit is contained in:
wilfried 2006-10-18 22:27:51 +00:00
parent 906e77daf7
commit c546947f80
3 changed files with 6 additions and 27 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.1.1.1 2006/05/06 17:28:44 wilfried Exp $
# $OpenBSD: Makefile,v 1.2 2006/10/18 22:27:51 wilfried Exp $
COMMENT= "manage and configure devices that supports IPMI"
DISTNAME= ipmitool-1.8.7
DISTNAME= ipmitool-1.8.8
CATEGORIES= sysutils
HOMEPAGE= http://ipmitool.sourceforge.net/

View File

@ -1,4 +1,4 @@
MD5 (ipmitool-1.8.7.tar.gz) = 8e581db152c97a8c402f94a13bd7aa67
RMD160 (ipmitool-1.8.7.tar.gz) = 2f9bfb0718935083f9a6a12845794ed5f52c1967
SHA1 (ipmitool-1.8.7.tar.gz) = 6cee18a703fffc662e49f268a91f2d1a6973b708
SIZE (ipmitool-1.8.7.tar.gz) = 628278
MD5 (ipmitool-1.8.8.tar.gz) = 8ae20a7621b00148acacab5b44540f3e
RMD160 (ipmitool-1.8.8.tar.gz) = e01c3c9248988f06250093745861bec58a1bf8a3
SHA1 (ipmitool-1.8.8.tar.gz) = 98381b7ae7471a6a58c5ebfeec343f07bac4df0a
SIZE (ipmitool-1.8.8.tar.gz) = 634899

View File

@ -1,21 +0,0 @@
$OpenBSD: patch-lib_ipmi_firewall_c,v 1.1 2006/09/22 01:54:59 pvalchev Exp $
--- lib/ipmi_firewall.c.orig Thu Sep 21 18:55:44 2006
+++ lib/ipmi_firewall.c Thu Sep 21 18:56:10 2006
@@ -877,6 +877,7 @@ ipmi_firewall_info(struct ipmi_intf * in
ret = _gather_info(intf, &p, bmc_fn_support);
if (p.command >= 0) {
+ struct command_support *cmd;
if (!((p.lun < 0 || bmc_fn_support->lun[p.lun].support) &&
(p.netfn < 0 || bmc_fn_support->lun[p.lun].netfn[p.netfn>>1].support) &&
bmc_fn_support->lun[p.lun].netfn[p.netfn>>1].command[p.command].support))
@@ -886,8 +887,7 @@ ipmi_firewall_info(struct ipmi_intf * in
free(bmc_fn_support);
return 0;
}
- struct command_support * cmd =
- &bmc_fn_support->lun[p.lun].netfn[p.netfn>>1].command[p.command];
+ cmd = &bmc_fn_support->lun[p.lun].netfn[p.netfn>>1].command[p.command];
c = cmd->support;
printf("(A)vailable, (C)onfigurable, (E)nabled: | A | C | E |\n");
printf("-----------------------------------------------------\n");