summaryrefslogtreecommitdiff
path: root/libmultipath/blacklist.c
diff options
context:
space:
mode:
authorChristophe Varoqui <root@xa-s05.(none)>2006-01-20 15:33:37 +0100
committerChristophe Varoqui <root@xa-s05.(none)>2006-01-20 15:33:37 +0100
commit472fc227e867cb18898489f450ebcebb50b07586 (patch)
treea3ce62483ab74b5680385d59ef87cde5c7afef09 /libmultipath/blacklist.c
parente3d104db60eae00e964360641c13146d465f19b8 (diff)
downloadmultipath-tools-472fc227e867cb18898489f450ebcebb50b07586.tar.gz
multipath-tools-472fc227e867cb18898489f450ebcebb50b07586.tar.bz2
multipath-tools-472fc227e867cb18898489f450ebcebb50b07586.zip
[libmultipath] yet more output prefixing
Diffstat (limited to 'libmultipath/blacklist.c')
-rw-r--r--libmultipath/blacklist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmultipath/blacklist.c b/libmultipath/blacklist.c
index 80ca8c4..a73e09b 100644
--- a/libmultipath/blacklist.c
+++ b/libmultipath/blacklist.c
@@ -125,7 +125,7 @@ blacklist (vector blist, char * str)
vector_foreach_slot (blist, ble, i) {
if (!regexec(&ble->regex, str, 0, NULL, 0)) {
- condlog(3, "%s blacklisted", str);
+ condlog(3, "%s: blacklisted", str);
return 1;
}
}
@@ -141,7 +141,7 @@ blacklist_device (vector blist, char * vendor, char * product)
vector_foreach_slot (blist, ble, i) {
if (!regexec(&ble->vendor_reg, vendor, 0, NULL, 0) &&
!regexec(&ble->product_reg, product, 0, NULL, 0)) {
- condlog(3, "%s:%s blacklisted", vendor, product);
+ condlog(3, "%s:%s: blacklisted", vendor, product);
return 1;
}
}