diff options
author | Ralph Boehme <slow@samba.org> | 2022-12-03 17:04:33 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2022-12-14 01:38:29 +0000 |
commit | fc57b88e6a93d59ad243364a513d33cecf66e4ab (patch) | |
tree | b2a120d19c33aca6f846e130dd42639b5a7b4606 /source3/rpc_server | |
parent | 38ba7d1476c1bdb5bbde70c45b47d12ab1699516 (diff) | |
download | samba-fc57b88e6a93d59ad243364a513d33cecf66e4ab.tar.gz |
smbd: remove process shortname arg from reinit_after_fork()
All callers pass NULL anyway, so it isn't used anymore.
Signed-off-by: Ralph Boehme <slow@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/rpc_host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/rpc_host.c b/source3/rpc_server/rpc_host.c index 7ca24240a92..f58c825e7cc 100644 --- a/source3/rpc_server/rpc_host.c +++ b/source3/rpc_server/rpc_host.c @@ -2949,7 +2949,7 @@ int main(int argc, const char *argv[]) cmdline_daemon_cfg->no_process_group, log_stdout); - status = reinit_after_fork(msg_ctx, ev_ctx, false, NULL); + status = reinit_after_fork(msg_ctx, ev_ctx, false); if (!NT_STATUS_IS_OK(status)) { exit_daemon("reinit_after_fork() failed", map_errno_from_nt_status(status)); |