- (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again.
This commit is contained in:
parent
416d874094
commit
63941f9631
|
@ -1,3 +1,6 @@
|
||||||
|
20010226
|
||||||
|
- (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again.
|
||||||
|
|
||||||
20010225
|
20010225
|
||||||
- (djm) Use %{_libexecdir} rather than hardcoded path in RPM specfile
|
- (djm) Use %{_libexecdir} rather than hardcoded path in RPM specfile
|
||||||
Patch from Adrian Ho <lexfiend@usa.net>
|
Patch from Adrian Ho <lexfiend@usa.net>
|
||||||
|
@ -4126,4 +4129,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.821 2001/02/25 02:02:43 mouring Exp $
|
$Id: ChangeLog,v 1.822 2001/02/25 23:20:40 mouring Exp $
|
||||||
|
|
|
@ -51,7 +51,12 @@
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
|
|
||||||
RCSID("$Id: bsd-snprintf.c,v 1.4 2001/02/13 14:05:59 mouring Exp $");
|
RCSID("$Id: bsd-snprintf.c,v 1.5 2001/02/25 23:20:41 mouring Exp $");
|
||||||
|
|
||||||
|
#if defined(BROKEN_SNPRINTF) /* For those with broken snprintf() */
|
||||||
|
# undef HAVE_SNPRINTF
|
||||||
|
# undef HAVE_VSNPRINTF
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
|
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue