diff options
| author | Keith Vetter <keithv@fusion.com> | 1995-03-22 22:38:05 +0000 |
|---|---|---|
| committer | Keith Vetter <keithv@fusion.com> | 1995-03-22 22:38:05 +0000 |
| commit | 26003cc0ac025cee891deb27a7b6ecce7250ea88 (patch) | |
| tree | c18810ef4cb9f18aaadef3e1b9453238a7605c0f /src/util | |
| parent | b92f61e5c47d5b4b2d8cd3e65f5dfdcc334624e6 (diff) | |
| download | krb5-26003cc0ac025cee891deb27a7b6ecce7250ea88.tar.gz krb5-26003cc0ac025cee891deb27a7b6ecce7250ea88.tar.xz krb5-26003cc0ac025cee891deb27a7b6ecce7250ea88.zip | |
Fixed problem in com_err.c due to the fact that the PC doesn't use autoconf and
com_err.c doesn't include k5-config.h.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5199 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/et/ChangeLog | 6 | ||||
| -rw-r--r-- | src/util/et/com_err.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/util/et/ChangeLog b/src/util/et/ChangeLog index 6a514a2fa..bf6bfa038 100644 --- a/src/util/et/ChangeLog +++ b/src/util/et/ChangeLog @@ -1,3 +1,9 @@ +Wed Mar 22 11:34:09 1995 Keith Vetter (keithv@fusion.com) + + * com_err.c: added _WINDOWS equivalent condition to HAVE_STDARG_H + since windows fakes autoconf by defining such constants in + k5-config.h which isn't included for this file. + Thu Mar 16 19:57:20 1995 Keith Vetter (keithv@fusion.com) * com_err.c: added missing INTERFACE on a prototype. diff --git a/src/util/et/com_err.c b/src/util/et/com_err.c index b4487ab4f..4ed2472a6 100644 --- a/src/util/et/com_err.c +++ b/src/util/et/com_err.c @@ -8,7 +8,7 @@ #include <string.h> #include "mit-sipb-copyright.h" -#ifdef HAVE_STDARG_H +#if defined(HAVE_STDARG_H) || defined(_WINDOWS) #include <stdarg.h> #else #include <varargs.h> |
