-$Id: CHANGES,v 1.6 1999/10/13 09:57:12 stelian Exp $
+$Id: CHANGES,v 1.7 1999/10/18 09:47:58 tiniou Exp $
Changes between versions 0.4b7 and 0.4b8 (released ???????????????)
===================================================================
2. Added the dump/restore version in the usage text so one can
easily verify the version he is using.
+3. Small patch from Nuno Oliveira <nuno@eq.uc.pt> which fixes
+ a va_start/va_end problem on linux-ppc (always call va_start
+ va_end in pairs each time we use a vararg function).
+
Changes between versions 0.4b6 and 0.4b7 (released October 8, 1999)
===================================================================
-$Id: THANKS,v 1.5 1999/10/11 13:31:04 stelian Exp $
+$Id: THANKS,v 1.6 1999/10/18 09:47:58 tiniou Exp $
Dump and restore were written by the people of the CSRG at the University
of California, Berkeley.
David Miller davem@caip.rutgers.edu
David Monro davidm@cs.su.oz.au
Lukas Nellen L.Nellen@ThPhys.Uni-Heidelberg.DE
+Nuno Oliveira nuno@eq.uc.pt
Brent Olson night@halcyon.com
Bob Snyder rsnyder@janet.advsys.com
Stephen Tweedie sct@dcs.ed.ac.uk
#ifndef lint
static const char rcsid[] =
- "$Id: optr.c,v 1.6 1999/10/13 09:57:20 stelian Exp $";
+ "$Id: optr.c,v 1.7 1999/10/18 09:48:00 tiniou Exp $";
#endif /* not lint */
#include <sys/param.h>
va_start(ap);
#endif
(void) vfprintf(stderr, fmt, ap);
+ va_end(ap);
(void) fflush(stdout);
(void) fflush(stderr);
+#ifdef __STDC__
+ va_start(ap, fmt);
+#else
+ va_start(ap);
+#endif
(void) vsnprintf(lastmsg, sizeof(lastmsg), fmt, ap);
va_end(ap);
}