summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--openbsd-compat/bsd-snprintf.c5
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ea8215ae1..115d7aebc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@
4 Andrew Bartlett <abartlet@pcug.org.au> 4 Andrew Bartlett <abartlet@pcug.org.au>
5 - (djm) Move PAM session initialisation until after fork in sshd. Patch 5 - (djm) Move PAM session initialisation until after fork in sshd. Patch
6 from Nalin Dahyabhai <nalin@redhat.com> 6 from Nalin Dahyabhai <nalin@redhat.com>
7 - (bal) Missing function prototype in bsd-snprintf.c patch by
8 Mark Miller <markm@swoon.net>
7 9
820010213 1020010213
9 - (djm) Only test -S potential EGD sockets if they exist and are readable. 11 - (djm) Only test -S potential EGD sockets if they exist and are readable.
@@ -3920,4 +3922,4 @@
3920 - Wrote replacements for strlcpy and mkdtemp 3922 - Wrote replacements for strlcpy and mkdtemp
3921 - Released 1.0pre1 3923 - Released 1.0pre1
3922 3924
3923$Id: ChangeLog,v 1.756 2001/02/13 13:45:51 djm Exp $ 3925$Id: ChangeLog,v 1.757 2001/02/13 14:05:59 mouring Exp $
diff --git a/openbsd-compat/bsd-snprintf.c b/openbsd-compat/bsd-snprintf.c
index 55d14284d..d02e5ae50 100644
--- a/openbsd-compat/bsd-snprintf.c
+++ b/openbsd-compat/bsd-snprintf.c
@@ -51,7 +51,7 @@
51 51
52#include "includes.h" 52#include "includes.h"
53 53
54RCSID("$Id: bsd-snprintf.c,v 1.3 2001/02/13 02:18:50 mouring Exp $"); 54RCSID("$Id: bsd-snprintf.c,v 1.4 2001/02/13 14:05:59 mouring Exp $");
55 55
56#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) 56#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
57 57
@@ -70,6 +70,9 @@ static void
70fmtfp(char *buffer, size_t *currlen, size_t maxlen, long double fvalue, 70fmtfp(char *buffer, size_t *currlen, size_t maxlen, long double fvalue,
71 int min, int max, int flags); 71 int min, int max, int flags);
72 72
73static void
74dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c);
75
73/* 76/*
74 * dopr(): poor man's version of doprintf 77 * dopr(): poor man's version of doprintf
75 */ 78 */