]> andersk Git - moira.git/blobdiff - server/mr_shutdown.c
remove startdcm with make clean
[moira.git] / server / mr_shutdown.c
index f0472544a1ac54a00384d7e0bf06dc2d8b78f531..b492b9f34ebcadc3ea20a247d2bacd317b78b10d 100644 (file)
@@ -4,20 +4,16 @@
  *     $Header$
  *
  *     Copyright (C) 1987 by the Massachusetts Institute of Technology
+ *     For copying and distribution information, please see the file
+ *     <mit-copyright.h>.
  *
- *     $Log$
- *     Revision 1.2  1987-06-21 16:42:12  wesommer
- *     Performance work, rearrangement of include files.
- *
- * Revision 1.1  87/06/02  20:07:18  wesommer
- * Initial revision
- * 
  */
 
 #ifndef lint
 static char *rcsid_sms_shutdown_c = "$Header$";
 #endif lint
 
+#include <mit-copyright.h>
 #include <strings.h>
 #include <sys/errno.h>
 #include "sms_server.h"
@@ -35,32 +31,11 @@ do_shutdown(cl)
        client *cl;
 {
        static char buf[BUFSIZ];
-
-       if (cl->args->sms_argc != 1) {
-               cl->reply.sms_status = EINVAL;
-               return;
-       }
-               
-       if (!cl->clname) {
-               (void) sprintf(buf,
-                              "Unauthenticated shutdown request rejected",
-                              cl->clname);
-               com_err(whoami, 0, buf);
-               cl->reply.sms_status = EACCES;
-               return;
-       }
-       if (!strcmp(cl->clname, "wesommer@ATHENA.MIT.EDU") ||
-           !strcmp(cl->clname, "mike@ATHENA.MIT.EDU")) {
-               (void) sprintf(buf, "Shut down by %s", cl->clname);
-               com_err(whoami, 0, buf);
-               (void) strcpy(buf, "Reason for shutdown: ");
-               (void) strcat(buf, cl->args->sms_argv[0]);
-               takedown = buf;
-       } else {
-               (void) sprintf(buf, "Shutdown request by %s rejected",
-                              cl->clname);
-               com_err(whoami, 0, buf);
-               cl->reply.sms_status = EACCES;
-       }
+       /*
+        * This feature is no longer supported.  Sorry.
+        */
+       com_err(whoami, 0, "Shutdown request by %s rejected",
+               cl->clname);
+       cl->reply.sms_status = EACCES;
 }
                
This page took 0.03394 seconds and 4 git commands to generate.