Make iscsictl(1) display "Disabled" status for disabled sessions.

MFC after:	2 weeks
This commit is contained in:
Edward Tomasz Napierala 2018-03-10 14:33:00 +00:00
parent 8ff2372a2c
commit be3d357e23
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=330741

View File

@ -605,7 +605,8 @@ kernel_list(int iscsi_fd, const struct target *targ __unused,
xo_emit("{V:name/%-36s/%s} {V:portal/%-16s/%s} ",
conf->isc_target, conf->isc_target_addr);
if (state->iss_reason[0] != '\0') {
if (state->iss_reason[0] != '\0' &&
conf->isc_enable != 0) {
xo_emit("{V:state/%s}\n", state->iss_reason);
} else {
if (conf->isc_discovery) {