/* * $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_sms_shutdown_c = "$Header$"; #endif lint #include #include #include #include "sms_server.h" extern char *takedown; extern char *whoami; sigshut() { takedown = "Shut down by signal."; } void do_shutdown(cl) client *cl; { static char buf[BUFSIZ]; /* * This feature is no longer supported. Sorry. */ com_err(whoami, 0, "Shutdown request by %s rejected", cl->clname); cl->reply.sms_status = EACCES; }