/* * $Source$ * $Author$ * $Header$ * * Copyright (C) 1987 by the Massachusetts Institute of Technology * For copying and distribution information, please see the file * . * */ #ifndef lint static char *rcsid_mr_shutdown_c = "$Header$"; #endif lint #include #include #include "mr_server.h" 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); cl->reply.mr_status = EACCES; }