]> andersk Git - moira.git/blame - server/mr_shutdown.c
Diane Delgado's changes for a fixed table-locking order
[moira.git] / server / mr_shutdown.c
CommitLineData
a3cf6921 1/*
2 * $Source$
3 * $Author$
4 * $Header$
5 *
6 * Copyright (C) 1987 by the Massachusetts Institute of Technology
c801de4c 7 * For copying and distribution information, please see the file
8 * <mit-copyright.h>.
a3cf6921 9 *
a3cf6921 10 */
11
12#ifndef lint
13static char *rcsid_sms_shutdown_c = "$Header$";
14#endif lint
15
c801de4c 16#include <mit-copyright.h>
a3cf6921 17#include <strings.h>
18#include <sys/errno.h>
d548a4e7 19#include "mr_server.h"
a3cf6921 20
21extern char *takedown;
22extern char *whoami;
23
24sigshut()
25{
26 takedown = "Shut down by signal.";
27}
28
29void
30do_shutdown(cl)
31 client *cl;
32{
33 static char buf[BUFSIZ];
0ba1d418 34 /*
35 * This feature is no longer supported. Sorry.
36 */
37 com_err(whoami, 0, "Shutdown request by %s rejected",
38 cl->clname);
d548a4e7 39 cl->reply.mr_status = EACCES;
a3cf6921 40}
41
This page took 0.093091 seconds and 5 git commands to generate.