summaryrefslogtreecommitdiff
path: root/libmultipath/structs_vec.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmultipath/structs_vec.c')
-rw-r--r--libmultipath/structs_vec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmultipath/structs_vec.c b/libmultipath/structs_vec.c
index b0dc095..1a6d8e2 100644
--- a/libmultipath/structs_vec.c
+++ b/libmultipath/structs_vec.c
@@ -59,8 +59,8 @@ adopt_paths (vector pathvec, struct multipath * mpp)
vector_foreach_slot (pathvec, pp, i) {
if (!strncmp(mpp->wwid, pp->wwid, WWID_SIZE)) {
- condlog(3, "%s ownership set to %s",
- pp->dev_t, mpp->alias);
+ condlog(3, "%s: ownership set to %s",
+ pp->dev, mpp->alias);
pp->mpp = mpp;
if (!mpp->paths && !(mpp->paths = vector_alloc()))
@@ -97,7 +97,7 @@ orphan_paths (vector pathvec, struct multipath * mpp)
vector_foreach_slot (pathvec, pp, i) {
if (pp->mpp == mpp) {
- condlog(4, "%s is orphaned", pp->dev_t);
+ condlog(4, "%s: orphaned", pp->dev);
orphan_path(pp);
}
}