summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2021-06-25 10:42:53 +0200
committerThe Plumber <50238977+systemd-rhel-bot@users.noreply.github.com>2021-07-01 13:55:18 +0200
commit5944138a54017fc8f1f4c878a1eea96ea18736c4 (patch)
treeab11846d5a8d83e5d8a7131a124b06590f0338b2
parent4ad39b0531f550cde6e01df0801f177c08514c8b (diff)
downloadsystemd-5944138a54017fc8f1f4c878a1eea96ea18736c4.tar.gz
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 . (cherry picked from commit 99df1cb6f50875db513a5b45f18191460a150f3d) Related: #1970860
-rw-r--r--src/basic/copy.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/basic/copy.c b/src/basic/copy.c
index a48c42c5c6..1a0db29ac9 100644
--- a/src/basic/copy.c
+++ b/src/basic/copy.c
@@ -218,7 +218,6 @@ int copy_bytes_full(
break;
try_sendfile = try_splice = false; /* same logic as above for copy_file_range() */
- break;
} else
/* Success! */
goto next;