From: Lennart Poettering Date: Fri, 1 Nov 2024 09:05:32 +0000 (+0100) Subject: coredump: rename gather_pid_mount_tree_fd() → acquire_pid_mount_tree_fd() X-Git-Tag: v257-rc1~57^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F34975%2Fhead;p=thirdparty%2Fsystemd.git coredump: rename gather_pid_mount_tree_fd() → acquire_pid_mount_tree_fd() From my understanding of the english language "gather" imples there are multiple things to gather. But here there's only one, hence use "acquire" --- diff --git a/src/coredump/coredump.c b/src/coredump/coredump.c index 7782839c2dc..6970a6a8988 100644 --- a/src/coredump/coredump.c +++ b/src/coredump/coredump.c @@ -1688,7 +1688,7 @@ static int forward_coredump_to_container(Context *context) { return 0; } -static int gather_pid_mount_tree_fd(const Context *context, int *ret_fd) { +static int acquire_pid_mount_tree_fd(const Context *context, int *ret_fd) { /* Don't bother preparing environment if we can't pass it to libdwfl. */ #if !HAVE_DWFL_SET_SYSROOT *ret_fd = -EOPNOTSUPP; @@ -1809,7 +1809,7 @@ static int process_kernel(int argc, char* argv[]) { if (r >= 0) return 0; - r = gather_pid_mount_tree_fd(&context, &context.mount_tree_fd); + r = acquire_pid_mount_tree_fd(&context, &context.mount_tree_fd); if (r < 0) log_warning_errno(r, "Failed to access the mount tree of a container, ignoring: %m"); }