diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-03-16 13:33:41 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-03-16 13:33:41 +0100 |
commit | b5b2075a902277c33d7cf1b82f49f0fac7ef4cb9 (patch) | |
tree | 1aa3760d12518e0f7d04bf872de5039aed6c8196 /util/ievents.c | |
parent | d602f4fb516292c297072bd924289eea37b45fa2 (diff) |
New upstream version 3.2.1upstream/3.2.1upstream
Diffstat (limited to 'util/ievents.c')
-rw-r--r-- | util/ievents.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/ievents.c b/util/ievents.c index 17b41a4..d9e9054 100644 --- a/util/ievents.c +++ b/util/ievents.c @@ -80,7 +80,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. extern char *progver; /*from ipmiutil.c*/ static char * progname = "ipmiutil events"; #else -static char *progver = "3.19"; +static char *progver = "3.21"; static char *progname = "ievents"; #endif static char fsensdesc = 0; /* 1= get extended sensor descriptions*/ @@ -626,7 +626,7 @@ extern int GetSDR(int recid, int *recnext, uchar *sdr, int szsdr, int *slen); extern double RawToFloat(uchar raw, uchar *psdr); extern char *get_unit_type(uchar iunit, uchar ibase, uchar imod, int flg); extern int find_sdr_by_snum(uchar *psdr,uchar *pcache, uchar snum, uchar sa); -extern int GetSensorType(int snum, uchar *stype, uchar *rtype); +extern int GetSensorType(uchar snum, uchar *stype, uchar *rtype); extern char * get_mfg_str(uchar *rgmfg, int *pmfg); /*from ihealth.c*/ extern int decode_post_intel(int prod, ushort code, char *outbuf,int szbuf); extern int decode_sel_kontron(uchar *evt, char *obuf,int sz,char fdesc,char fdbg); /*oem_kontron.c*/ @@ -678,7 +678,7 @@ extern int GetSDR(int recid, int *recnext, uchar *sdr, int szsdr, int *slen); extern double RawToFloat(uchar raw, uchar *psdr); extern char *get_unit_type(uchar iunit, uchar ibase, uchar imod, int flg); extern int find_sdr_by_snum(uchar *psdr,uchar *pcache, uchar snum, uchar sa); -extern int GetSensorType(int snum, uchar *stype, uchar *rtype); +extern int GetSensorType(uchar snum, uchar *stype, uchar *rtype); #else static int GetSDR(int recid, int *recnext, uchar *sdr, int szsdr, int *slen) { return(-1); } @@ -688,7 +688,7 @@ static char *get_unit_type(uchar iunit, uchar ibase, uchar imod, int flg) { return(""); }; static int find_sdr_by_snum(uchar *psdr,uchar *pcache, uchar snum, uchar sa) { return(-1); } -static int GetSensorType(int snum, uchar *stype, uchar *rtype) +static int GetSensorType(uchar snum, uchar *stype, uchar *rtype) { return(-1); } #endif #endif |