If we're on an SGI machine, don't do the MOTD or MAILCHECK thing,
authorTheodore Tso <tytso@mit.edu>
Fri, 28 Mar 1997 06:15:43 +0000 (06:15 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 28 Mar 1997 06:15:43 +0000 (06:15 +0000)
since it's done by /etc/cshrc magic.  (SGI's don't define __SVR4, even
though it's SVR4 derived).  [krb5-appl/158]

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10033 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/bsd/ChangeLog
src/appl/bsd/login.c

index e588b00005aef3e6de7161339b5c3df0f6642808..ba4a97e4935154421e5e7d8e78f2f4110f1bcb91 100644 (file)
@@ -1,5 +1,10 @@
 Fri Mar 28 01:05:27 1997  Theodore Y. Ts'o  <tytso@mit.edu>
 
+       * login.c (NO_MOTD): If we're on an SGI machine, don't do the MOTD
+               or MAILCHECK thing, since it's done by /etc/cshrc magic.
+               (SGI's don't define __SVR4, even though it's SVR4
+               derived).  [krb5-appl/158]
+
        * krlogin.c (try_normal): When falling back to the normal rlogin,
                clear the signal mask, so that the child rlogin handles
                SIGUSR1 (which is used for window size changes) correctly.
index 68ca4126b0f233da55e3b46e39e3ea5a15887d34..41236465b15e4aaa1024f7f4fd8cd7e5c30d19c4 100644 (file)
@@ -281,7 +281,7 @@ extern int errno;
                                           passsword */
 #endif
 
-#ifdef __SVR4
+#if defined(__SVR4) || defined(sgi)
 #define NO_MOTD
 #define NO_MAILCHECK
 #endif