diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2021-11-28 13:35:46 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2021-11-28 13:35:46 +0100 |
commit | 73cc47da56f66615c943c16da6c04e0c5db5af7f (patch) | |
tree | 28e0a8e1801880f78392a24e03dbca540182f98c /util/ipmilan2.c | |
parent | 12f0c28c2c2a1785278df0d0731ef57921c0cd1a (diff) | |
parent | aa6f36c496d85c26f929619d0cb27a53493298d2 (diff) |
Merge branch 'release/debian/3.1.8-1'debian/3.1.8-1
Diffstat (limited to 'util/ipmilan2.c')
-rw-r--r-- | util/ipmilan2.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/util/ipmilan2.c b/util/ipmilan2.c index 0ff2fac..4d0bcc3 100644 --- a/util/ipmilan2.c +++ b/util/ipmilan2.c @@ -30,7 +30,10 @@ void set_loglevel(int level); void lprintf(int level, const char * format, ...); int ipmi_open_lan2(char *node, char *user, char *pswd, int fdebugcmd) -{ if (fdebugcmd) verbose = 1; return(LAN_ERR_INVPARAM); } +{ if (fdebugcmd) verbose = 1; + printf("ipmi_open_lan2: lanplus not configured\n"); + return(LAN_ERR_INVPARAM); +} int ipmi_close_lan2(char *node) { return(LAN_ERR_INVPARAM); } |