error_message.c: Use "#if defined(MSDOS) || ..." instead of "#if
authorTheodore Tso <tytso@mit.edu>
Tue, 1 Dec 1998 23:51:12 +0000 (23:51 +0000)
committerTheodore Tso <tytso@mit.edu>
Tue, 1 Dec 1998 23:51:12 +0000 (23:51 +0000)
!defined(unix)", since not all Unix compilers define "unix".

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

src/util/et/ChangeLog
src/util/et/error_message.c

index 13358334fd09db1fa81de003f6dc866796e4afc7..cd7eec4b887207f55387f992fd53dc601d2a4bd1 100644 (file)
@@ -1,3 +1,9 @@
+1998-12-01  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * error_message.c: Use "#if defined(MSDOS) || ..." instead of 
+               "#if !defined(unix)", since not all Unix compilers define
+               "unix".
+
 1998-07-02  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * com_err.c (MacMessageBox): Change TextBox to TETextBox to match
index d18b3686723ace8785cac034c27bd97ffed214a6..95223d7c3f3b7dfbc4593d439e529e91e99b50e9 100644 (file)
@@ -41,7 +41,7 @@ extern const int sys_nerr;
 
 static char buffer[ET_EBUFSIZ];
 
-#if !defined(unix) && !defined(_AIX)
+#if (defined(_MSDOS) || defined(_WIN32) || defined(macintosh))
 static struct et_list * _et_list = (struct et_list *) NULL;
 #else
 /* Old interface compatibility */