aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/smtpctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'smtpd/smtpctl.c')
-rw-r--r--smtpd/smtpctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/smtpd/smtpctl.c b/smtpd/smtpctl.c
index 4aee3ba1..5b83acb0 100644
--- a/smtpd/smtpctl.c
+++ b/smtpd/smtpctl.c
@@ -696,7 +696,7 @@ do_show_stats(int argc, struct parameter *argv)
}
static int
-do_shutdown(int argc, struct parameter *argv)
+do_stop(int argc, struct parameter *argv)
{
srv_send(IMSG_CTL_SHUTDOWN, NULL, 0);
return srv_check_result();
@@ -787,7 +787,7 @@ main(int argc, char **argv)
cmd_install("show queue <msgid>", do_show_queue);
cmd_install("show routes", do_show_routes);
cmd_install("show stats", do_show_stats);
- cmd_install("shutdown", do_shutdown);
+ cmd_install("stop", do_stop);
cmd_install("trace <str>", do_trace);
cmd_install("unprofile <str>", do_unprofile);
cmd_install("untrace <str>", do_untrace);