Search
j0ke.net Open Build Service
>
Projects
>
GFS
>
multipath-tools
> multipath-tools-blacklist-exceptions-typo
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File multipath-tools-blacklist-exceptions-typo of Package multipath-tools
tree e34fedb898da53c63db1d8b1a04fc34a9dba5e6d parent 5e3a841e232b2bf29fc4ea46aa5af2fc26cf0c22 author Hannes Reinecke <hare@suse.de> 1177508109 +0200 committer Hannes Reinecke <hare@suse.de> 1177508109 +0200 [libmultipath] Fix typo in blacklist_exceptions blacklist_exceptions has a typo which will result in a parsing error whenever this keyword is used. Signed-off-by: Hannes Reinecke <hare@suse.de> b21e5c1990bce8d2a8197776fb98a7897d9f68bc libmultipath/dict.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmultipath/dict.c b/libmultipath/dict.c index 69f61e8..c51ab05 100644 --- a/libmultipath/dict.c +++ b/libmultipath/dict.c @@ -244,7 +244,7 @@ blacklist_exceptions_handler(vector strv conf->elist_wwid = vector_alloc(); conf->elist_device = vector_alloc(); - if (!conf->elist_devnode || !conf->elist_wwid || !conf->blist_device) + if (!conf->elist_devnode || !conf->elist_wwid || !conf->elist_device) return 1; return 0;