From: David Tardon Date: Fri, 25 Jun 2021 08:42:53 +0000 (+0200) Subject: remove a left-over break X-Git-Tag: v249-rc2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99df1cb6f50875db513a5b45f18191460a150f3d;p=thirdparty%2Fsystemd.git remove a left-over break By the "same logic as above...", we want to continue to fallback here, but the break prohibits that. This is a follow-up for ee1aa61c4710ae567a2b844e0f0bb8cb0456ab8c . --- diff --git a/src/shared/copy.c b/src/shared/copy.c index ed9f2ba3ff8..04f99a2d6f8 100644 --- a/src/shared/copy.c +++ b/src/shared/copy.c @@ -244,7 +244,6 @@ int copy_bytes_full( break; try_sendfile = try_splice = false; /* same logic as above for copy_file_range() */ - break; } else /* Success! */ goto next;