diff options
author | Lennart Poettering <lennart@poettering.net> | 2024-01-25 14:06:59 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2024-01-25 16:11:33 +0100 |
commit | 0e949cff539d678a901c1f0d6fedef5c40634059 (patch) | |
tree | c623a4d6f7c066618e5c91e49e1404d03b12a837 /src/core/bpf-socket-bind.h | |
parent | core: rename restrict-ifaces.[ch] → bpf-restrict-ifaces.[ch] (diff) | |
download | systemd-0e949cff539d678a901c1f0d6fedef5c40634059.tar.xz systemd-0e949cff539d678a901c1f0d6fedef5c40634059.zip |
bpf-socket-bind: rename bpf_serialize_socket_bind() → bpf_socket_bind_serialize()
This function is the only outlier, all other BPF glue functions are
called bpf_<module>_xyz(). Hence swap this over here too.
Diffstat (limited to 'src/core/bpf-socket-bind.h')
-rw-r--r-- | src/core/bpf-socket-bind.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/bpf-socket-bind.h b/src/core/bpf-socket-bind.h index 7d426df714..28b25f6872 100644 --- a/src/core/bpf-socket-bind.h +++ b/src/core/bpf-socket-bind.h @@ -12,4 +12,4 @@ int bpf_socket_bind_add_initial_link_fd(Unit *u, int fd); int bpf_socket_bind_install(Unit *u); -int bpf_serialize_socket_bind(Unit *u, FILE *f, FDSet *fds); +int bpf_socket_bind_serialize(Unit *u, FILE *f, FDSet *fds); |