* kerberos_v4.c: Replace STDARG_PROTOTYPES with HAVE_STDARG_H
authorJohn Gilmore <gnu@toad.com>
Sun, 19 Mar 1995 03:00:31 +0000 (03:00 +0000)
committerJohn Gilmore <gnu@toad.com>
Sun, 19 Mar 1995 03:00:31 +0000 (03:00 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5173 dc483132-0cff-0310-8789-dd5450dbe970

src/kdc/ChangeLog
src/kdc/kerberos_v4.c

index e55dfe9d112fc0ce01f66a4b05829176767e2433..210c6d90c0560ca6c3a01830edea49976be491f5 100644 (file)
@@ -1,3 +1,7 @@
+Sat Mar 18 18:59:45 1995  John Gilmore  (gnu at toad.com)
+
+       * kerberos_v4.c:  Replace STDARG_PROTOTYPES with HAVE_STDARG_H.
+
 Tue Mar 14 15:25:38 1995    <tytso@rsx-11.mit.edu>
 
        * configure.in, Makefile.in: Use the libdes425 library so that the
index 5f4b59030e2f0167331d78638f6a3380a6b11cf3..d8164e4161ff730ab0e510a61f6bf15af2cd3eea 100644 (file)
@@ -27,7 +27,7 @@
 
 #include "k5-int.h"
 
-#if __STDC__ || defined(STDARG_PROTOTYPES)
+#ifdef HAVE_STDARG_H
 #include <stdarg.h>
 #else
 #include <varargs.h>
@@ -454,7 +454,7 @@ int type_2_v5err[] = { 0,   /*              0  No error                   */
     KRB_AP_ERR_BADVERSION      /* L_KRB_PWARN  16 Protocol warning messages  */
 };
 #define klog v4_klog
-#if __STDC__ || defined(STDARG_PROTOTYPES)
+#ifdef HAVE_STDARG_H
 char * v4_klog( int type, const char *format, ...)
 #else
 char * v4_klog( type, format, va_alist)
@@ -465,7 +465,7 @@ char * v4_klog( type, format, va_alist)
 {
     int logpri = LOG_INFO;
     va_list pvar;
-#if __STDC__ || defined(STDARG_PROTOTYPES)
+#ifdef HAVE_STDARG_H
     va_start(pvar, format);
 #else
     va_start(pvar);