Displaying 2 results from an estimated 2 matches for "6963574".
2014 Jun 29
0
[PATCH 3/6] chain/partiter: adjust error reporting
...(!pi_next(iter));
if (iter->status) {
- error("Requested disk / partition combination not found.");
+ error("Unable to find requested disk / partition combination.");
goto bail;
}
}
diff --git a/com32/chain/mangle.c b/com32/chain/mangle.c
index ffdaab8..6963574 100644
--- a/com32/chain/mangle.c
+++ b/com32/chain/mangle.c
@@ -562,7 +562,7 @@ int manglepe_hide(struct part_iter *miter)
}
}
- if (pi_errored(iter))
+ if (iter->status < 0)
goto bail;
/* last update */
@@ -663,7 +663,7 @@ int manglepe_fixchs(struct part_iter *miter)...
2014 Jun 29
10
[PATCH 0/6] chain.c32 patches
This small set fixes few bugs, improves gpt handling (under buggy conditions)
and implements strict flag with more fine grained control which should fix
issues with sanity checks against disk sizes.
If this set is allright I'd want to do what I mentioned in older discussion
with Ady - backport missing patches from 6.x to 5.x and 4.x so all versions
have up to date chain version.
Michal