Windows has strerror()
authorTheodore Tso <tytso@mit.edu>
Wed, 28 Feb 1996 05:18:50 +0000 (05:18 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 28 Feb 1996 05:18:50 +0000 (05:18 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7565 dc483132-0cff-0310-8789-dd5450dbe970

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

index c8051e5392f629d8db53e7ce1541c34d236fb8ef..0323440c9820984c90658b409812bedf01eb28b8 100644 (file)
@@ -1,3 +1,7 @@
+Sat Feb 24 18:50:03 1996  Theodore Y. Ts'o  <tytso@dcl>
+
+       * error_message.c (HAS_STRERROR): Windows has strerror()
+
 Wed Feb  7 00:19:17 1996  Theodore Y. Ts'o  <tytso@dcl>
 
        * Makefile.in (CCFILES): Checked in danw's changes to support
index 4a7821c462b8049486fa03a7a93e448524c83149..906b935c50e586dbf62d3b2c81c4b5ff1ef21ef2 100644 (file)
@@ -39,9 +39,12 @@ long code;
     char *cp;
 
 #ifdef _WINDOWS
+#define HAS_STRERROR 1
 /*
 ** Winsock defines errors in the range 10000-10100. These are equivalent
 ** to 10000 plus the Berkeley error numbers.
+*
+* (Does windows strerror() work right here?)
 */
     if (code >= 10000 && code <= 10100)                /* Is it Winsock error? */
        code -= 10000;                          /* Turn into Berkeley errno */