]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again.
authorBen Lindstrom <mouring@eviladmin.org>
Sun, 25 Feb 2001 23:20:40 +0000 (23:20 +0000)
committerBen Lindstrom <mouring@eviladmin.org>
Sun, 25 Feb 2001 23:20:40 +0000 (23:20 +0000)
ChangeLog
openbsd-compat/bsd-snprintf.c

index bf847fa480786ebc048beac229cb676c5de227a6..14374aaff29468f68aae6d8e639df9d1616971cd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+20010226
+ - (bal) Fixed bsd-snprinf.c so it now honors 'BROKEN_SNPRINTF' again.
+
 20010225
  - (djm) Use %{_libexecdir} rather than hardcoded path in RPM specfile
    Patch from Adrian Ho <lexfiend@usa.net>
  - Wrote replacements for strlcpy and mkdtemp
  - 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 $
index d02e5ae50e69eb1de2352a592b9a164def764a64..1c72ea61daa5053a7bf74356060d56db48b6f814 100644 (file)
 
 #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)