[1921] in Moira Commits
/svn/moira r4060 - trunk/moira/regtape
daemon@ATHENA.MIT.EDU (Garry Zacheiss)
Thu Dec 1 14:50:18 2011
Date: Thu, 1 Dec 2011 14:50:15 -0500
From: Garry Zacheiss <zacheiss@MIT.EDU>
Message-Id: <201112011950.pB1JoFWf017086@drugstore.mit.edu>
To: moira-commits@MIT.EDU
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: zacheiss
Date: 2011-12-01 14:50:15 -0500 (Thu, 01 Dec 2011)
New Revision: 4060
Modified:
trunk/moira/regtape/student.pc
Log:
Don't require six words for special students.
Modified: trunk/moira/regtape/student.pc
===================================================================
--- trunk/moira/regtape/student.pc 2011-11-16 21:32:54 UTC (rev 4059)
+++ trunk/moira/regtape/student.pc 2011-12-01 19:50:15 UTC (rev 4060)
@@ -138,9 +138,12 @@
while ((e = get_next_entry(in)))
{
- /* Don't require secure registration for cross-registered students. */
- if (!strcmp(e->reg_type, "Cross-Registered"))
- process_entry(e, 0);
+ /* Don't require secure registration for cross-registered or
+ * special students.
+ */
+ if (!strcmp(e->reg_type, "Cross-Registered") ||
+ !strcmp(e->reg_type, "Special"))
+ process_entry(e, 0);
else
process_entry(e, 1);
EXEC SQL COMMIT WORK;