From: Ray Strode Date: Wed, 13 Jun 2007 21:01:07 +0000 (-0400) Subject: return true in the success path to ply_file_copy X-Git-Tag: 0.1.0~147 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ac8809ce928643fdeb854fd28ea29dec79aef85;p=thirdparty%2Fplymouth.git return true in the success path to ply_file_copy --- 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);