[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[dm-devel] [PATCH] Fix typo in coalesce_paths
- From: hare suse de (Hannes Reinecke)
- To: Christophe Varoqui <christophe varoqui opensvc com>
- Cc: dm-devel redhat com
- Subject: [dm-devel] [PATCH] Fix typo in coalesce_paths
- Date: Tue, 20 Jul 2010 10:10:25 +0200
We allocate space for the alias, but never use it.
Signed-off-by: Hannes Reinecke <hare suse de>
---
libmultipath/configure.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/libmultipath/configure.c b/libmultipath/configure.c
index c6ca4b6..f32a484 100644
--- a/libmultipath/configure.c
+++ b/libmultipath/configure.c
@@ -577,11 +577,11 @@ coalesce_paths (struct vectors * vecs, vector newmp, char * refwwid, int force_r
remove_map(mpp, vecs, 0);
- if (dm_flush_map(mpp->alias))
+ if (dm_flush_map(alias))
condlog(2, "%s: remove failed (dead)",
- mpp->alias);
+ alias);
else
- condlog(2, "%s: remove (dead)", mpp->alias);
+ condlog(2, "%s: remove (dead)", alias);
}
}
return 0;
--
1.6.0.2
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]