Skip to content

Commit

Permalink
squash. swap args to kill().
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Sep 4, 2024
1 parent a1e162b commit 5767314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/main_server/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ int main(int _argc, char* _argv[])

if (g_reload_config) {
log_server::info("{}: Received configuration reload instruction. Reloading configuration.", __func__);
kill(SIGHUP, g_pid_af);
kill(g_pid_af, SIGHUP);
g_reload_config = 0;
}
#if 0
Expand Down

0 comments on commit 5767314

Please sign in to comment.