summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--openbsd-compat/bsd-snprintf.c1
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 818cb9774..ead33c85b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
120060909
2 - (dtucker) [openbsd-compat/bsd-snprintf.c] Add stdarg.h.
3
120060908 420060908
2 - (dtucker) [auth-sia.c] Add includes required for build on Tru64. Patch 5 - (dtucker) [auth-sia.c] Add includes required for build on Tru64. Patch
3 from Chris Adams. 6 from Chris Adams.
@@ -5415,4 +5418,4 @@
5415 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 5418 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
5416 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 5419 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
5417 5420
5418$Id: ChangeLog,v 1.4537 2006/09/08 15:05:21 dtucker Exp $ 5421$Id: ChangeLog,v 1.4538 2006/09/09 05:59:43 dtucker Exp $
diff --git a/openbsd-compat/bsd-snprintf.c b/openbsd-compat/bsd-snprintf.c
index 47cbcff67..04651e1d4 100644
--- a/openbsd-compat/bsd-snprintf.c
+++ b/openbsd-compat/bsd-snprintf.c
@@ -109,6 +109,7 @@
109#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) 109#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
110 110
111#include <ctype.h> 111#include <ctype.h>
112#include <stdarg.h>
112#include <stdlib.h> 113#include <stdlib.h>
113#include <string.h> 114#include <string.h>
114 115