aboutsummaryrefslogtreecommitdiff
path: root/sys/cam/ctl/ctl_scsi_all.c
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2015-09-10 10:46:21 +0000
committerAlexander Motin <mav@FreeBSD.org>2015-09-10 10:46:21 +0000
commitfb606ebabc5ead6411f33056f830fa3c9131a83c (patch)
tree127ee3f592766935b5b1a07a19892f28c6092a53 /sys/cam/ctl/ctl_scsi_all.c
parent14914827f0f5d112d73166599a6e0e71c2640361 (diff)
downloadsrc-fb606ebabc5ead6411f33056f830fa3c9131a83c.tar.gz
src-fb606ebabc5ead6411f33056f830fa3c9131a83c.zip
Remove unused target and initiator IDs.
Notes
Notes: svn path=/head/; revision=287620
Diffstat (limited to 'sys/cam/ctl/ctl_scsi_all.c')
-rw-r--r--sys/cam/ctl/ctl_scsi_all.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/ctl/ctl_scsi_all.c b/sys/cam/ctl/ctl_scsi_all.c
index 815e383c0725..acac6ea36f73 100644
--- a/sys/cam/ctl/ctl_scsi_all.c
+++ b/sys/cam/ctl/ctl_scsi_all.c
@@ -114,7 +114,7 @@ ctl_scsi_path_string(union ctl_io *io, char *path_str, int len)
{
snprintf(path_str, len, "(%u:%u:%u/%u): ",
- io->io_hdr.nexus.initid.id, io->io_hdr.nexus.targ_port,
+ io->io_hdr.nexus.initid, io->io_hdr.nexus.targ_port,
io->io_hdr.nexus.targ_lun, io->io_hdr.nexus.targ_mapped_lun);
}