mirror of git://anongit.mindrot.org/openssh.git
- (bal) Missing function prototype in bsd-snprintf.c patch by
Mark Miller <markm@swoon.net>
This commit is contained in:
parent
6b4146ad73
commit
116b6bdda8
|
@ -4,6 +4,8 @@
|
||||||
Andrew Bartlett <abartlet@pcug.org.au>
|
Andrew Bartlett <abartlet@pcug.org.au>
|
||||||
- (djm) Move PAM session initialisation until after fork in sshd. Patch
|
- (djm) Move PAM session initialisation until after fork in sshd. Patch
|
||||||
from Nalin Dahyabhai <nalin@redhat.com>
|
from Nalin Dahyabhai <nalin@redhat.com>
|
||||||
|
- (bal) Missing function prototype in bsd-snprintf.c patch by
|
||||||
|
Mark Miller <markm@swoon.net>
|
||||||
|
|
||||||
20010213
|
20010213
|
||||||
- (djm) Only test -S potential EGD sockets if they exist and are readable.
|
- (djm) Only test -S potential EGD sockets if they exist and are readable.
|
||||||
|
@ -3920,4 +3922,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.756 2001/02/13 13:45:51 djm Exp $
|
$Id: ChangeLog,v 1.757 2001/02/13 14:05:59 mouring Exp $
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
|
|
||||||
RCSID("$Id: bsd-snprintf.c,v 1.3 2001/02/13 02:18:50 mouring Exp $");
|
RCSID("$Id: bsd-snprintf.c,v 1.4 2001/02/13 14:05:59 mouring Exp $");
|
||||||
|
|
||||||
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
|
#if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
|
||||||
|
|
||||||
|
@ -70,6 +70,9 @@ static void
|
||||||
fmtfp(char *buffer, size_t *currlen, size_t maxlen, long double fvalue,
|
fmtfp(char *buffer, size_t *currlen, size_t maxlen, long double fvalue,
|
||||||
int min, int max, int flags);
|
int min, int max, int flags);
|
||||||
|
|
||||||
|
static void
|
||||||
|
dopr_outch(char *buffer, size_t *currlen, size_t maxlen, char c);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* dopr(): poor man's version of doprintf
|
* dopr(): poor man's version of doprintf
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue