From 84734197a30a0f3755b50850456cb15200bdc6fe Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Thu, 30 Oct 2003 16:50:38 +0000 Subject: allow to proceed when files are missing from clp and live tree (allows testing in "only live_tree" mode) --- mdk-stage1/stage1.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mdk-stage1') diff --git a/mdk-stage1/stage1.c b/mdk-stage1/stage1.c index 739e3dfaa..876c40867 100644 --- a/mdk-stage1/stage1.c +++ b/mdk-stage1/stage1.c @@ -398,9 +398,10 @@ static enum return_type handle_clp(char* clp, char* live, char* location_live, c return RETURN_ERROR; *is_symlink = 1; return RETURN_OK; + } else { + log_message("move: can't find %s nor %s, proceeding hoping files will be there", clp, live); + return RETURN_OK; } - log_message("move: panic, can't find %s nor %s", clp, live); - return RETURN_ERROR; } if (lomount(clp, location_mount, NULL, 1)) { -- cgit v1.2.1