summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Rajnoha <prajnoha@redhat.com>2015-07-21 11:00:43 +0200
committerPeter Rajnoha <prajnoha@redhat.com>2015-07-21 11:00:43 +0200
commitc3fddb0fbbcabf73d3bcf2786cea31c179f13fae (patch)
tree0e3efb6a6d4925e75254bae6f05f641f76d95801
parent697fb353dc5ecf813199c598eed07983868fdd56 (diff)
downloadlvm2-c3fddb0fbbcabf73d3bcf2786cea31c179f13fae.tar.gz
wiping: add "Wiping skipped." for the message context to be complete
-rw-r--r--lib/device/dev-type.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/device/dev-type.c b/lib/device/dev-type.c
index 873e02ebc..db4079225 100644
--- a/lib/device/dev-type.c
+++ b/lib/device/dev-type.c
@@ -530,6 +530,7 @@ static inline int _type_in_flag_list(const char *type, uint32_t flag_list)
#define MSG_FAILED_SIG_OFFSET "Failed to get offset of the %s signature on %s."
#define MSG_FAILED_SIG_LENGTH "Failed to get length of the %s signature on %s."
+#define MSG_WIPING_SKIPPED " Wiping skipped."
static int _blkid_wipe(blkid_probe probe, struct device *dev, const char *name,
uint32_t types_to_exclude, uint32_t types_no_prompt,
@@ -549,7 +550,7 @@ static int _blkid_wipe(blkid_probe probe, struct device *dev, const char *name,
log_error(MSG_FAILED_SIG_OFFSET, type, name);
return 0;
} else {
- log_error("WARNING: " MSG_FAILED_SIG_OFFSET, type, name);
+ log_error("WARNING: " MSG_FAILED_SIG_OFFSET MSG_WIPING_SKIPPED, type, name);
return 2;
}
}
@@ -558,7 +559,7 @@ static int _blkid_wipe(blkid_probe probe, struct device *dev, const char *name,
log_error(MSG_FAILED_SIG_LENGTH, type, name);
return 0;
} else {
- log_warn("WARNING: " MSG_FAILED_SIG_LENGTH, type, name);
+ log_warn("WARNING: " MSG_FAILED_SIG_LENGTH MSG_WIPING_SKIPPED, type, name);
return 2;
}
}
@@ -568,7 +569,7 @@ static int _blkid_wipe(blkid_probe probe, struct device *dev, const char *name,
log_error(MSG_FAILED_SIG_OFFSET, type, name);
return 0;
} else {
- log_warn("WARNING: " MSG_FAILED_SIG_OFFSET, type, name);
+ log_warn("WARNING: " MSG_FAILED_SIG_OFFSET MSG_WIPING_SKIPPED, type, name);
return 2;
}
}
@@ -577,7 +578,7 @@ static int _blkid_wipe(blkid_probe probe, struct device *dev, const char *name,
log_error(MSG_FAILED_SIG_LENGTH, type, name);
return 0;
} else {
- log_warn("WARNING: " MSG_FAILED_SIG_LENGTH, type, name);
+ log_warn("WARNING: " MSG_FAILED_SIG_LENGTH MSG_WIPING_SKIPPED, type, name);
return 2;
}
}