/* $Id$ * * Copyright (C) 1987-1998 by the Massachusetts Institute of Technology * For copying and distribution information, please see the file * . */ #include #include "mr_server.h" #include RCSID("$Header$"); extern char *takedown; extern char *whoami; void sigshut(int sig) { takedown = "Shut down by signal."; } void do_shutdown(client *cl) { /* * This feature is no longer supported. Sorry. */ com_err(whoami, 0, "Shutdown request by %s rejected", cl->clname); client_reply(cl, EACCES); }