Hello folks,

I'm wondering why are these functions, ipmi_lan_stats_get() and
ipmi_lan_stats_clear(), in 'lib/ipmi_lanp.c' returning 0 on, what
seems to me, errors?
Is there some specific reason I'm missing?

Code in question:
~~~ SNIP ~~~
        rsp = intf->sendrecv(intf, &req);
        if (rsp == NULL) {
                lprintf(LOG_ERR, "Get LAN Stats command failed");
                return 0;
        }

        if (rsp->ccode > 0) {
                lprintf(LOG_ERR, "Get LAN Stats command failed: %s",
                        val2str(rsp->ccode, completion_code_vals));
                return 0;
        }
~~~ SNIP ~~~

Thanks for clarification.

Regards,
Z.

------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Ipmitool-devel mailing list
Ipmitool-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipmitool-devel

Reply via email to