From 3ac8809ce928643fdeb854fd28ea29dec79aef85 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 13 Jun 2007 17:01:07 -0400 Subject: [PATCH] return true in the success path to ply_file_copy --- src/libply/ply-utils.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libply/ply-utils.c b/src/libply/ply-utils.c index f0704eaf..f98f21a6 100644 --- a/src/libply/ply-utils.c +++ b/src/libply/ply-utils.c @@ -765,6 +765,7 @@ ply_copy_file (const char *source, goto out; } + file_copied = true; out: close (source_fd); close (destination_fd);