From c1269a9fdea4d702cffe48733b33b272dad18a30 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Fri, 11 Mar 2005 02:55:49 +0000 Subject: [PATCH] STABLE14-volinfo-dont-bomb-on-attach-failure-20050310 let volinfo keep going in the face of failure (cherry picked from commit d82d85f7c4802db6ddadb42657d4ffa72b6c10cf) --- src/vol/vol-info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vol/vol-info.c b/src/vol/vol-info.c index 323134e0a..03d34bba8 100644 --- a/src/vol/vol-info.c +++ b/src/vol/vol-info.c @@ -587,7 +587,7 @@ HandleVolume(struct DiskPartition *dp, char *name) vp = AttachVolume(dp, name, &header); if (!vp) { printf("Volinfo: Error attaching volume header %s\n", name); - exit(1); + return; } } PrintHeader(vp); -- 2.39.5