]> andersk Git - moira.git/commitdiff
No longer separate out VSCIENTI; Punt Lincoln Labs people
authormar <mar>
Thu, 21 Oct 1993 15:18:47 +0000 (15:18 +0000)
committermar <mar>
Thu, 21 Oct 1993 15:18:47 +0000 (15:18 +0000)
regtape/employee.dc

index 8805453aec2d8bb6b92d554d132c2fc9c86020d0..35faefb099f1251b43b7e1f2beab7c75fd3ab7de 100644 (file)
@@ -226,12 +226,8 @@ FILE *in;
     e.title = strtrim(title);
 
     e.class = "MITS";
-    if (!strcmp(e.dept, "PROJECT ATHENA"))
-      e.class = "STAFF";
-    else if (substr(e.title, "PROF") || substr(e.title, "LECTURE"))
+    if (substr(e.title, "PROF") || substr(e.title, "LECTURE"))
       e.class = "FACULTY";
-    else if (!strcmp(e.title, "VISITING SCIENTIST"))
-      e.class = "VSCIENTI";
 
     strcpy(email, strtrim(username));
     if (host[0] == '@')
@@ -254,6 +250,10 @@ struct entry *e;
     int id, status, who;
     EXEC SQL END DECLARE SECTION;
 
+    /* Don't process Lincoln Labs */
+    if (!strncmp(e->address, "LL", 2))
+      return;
+
     who = WHO;
     prog = PROG;
     first = e->first;
This page took 0.137191 seconds and 5 git commands to generate.