mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-24 02:02:10 +08:00
- DEC Unix compile fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
- Manpage fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
This commit is contained in:
parent
3c7eeb2af5
commit
00d4bb117a
@ -4,6 +4,8 @@
|
||||
- Don't permanently fail on bind() if getaddrinfo has more choices left for
|
||||
us. Needed to work around messy IPv6 on Linux. Patch from Arkadiusz
|
||||
Miskiewicz <misiek@pld.org.pl>
|
||||
- DEC Unix compile fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
|
||||
- Manpage fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
|
||||
|
||||
20000302
|
||||
- Big cleanup of autoconf code
|
||||
|
@ -126,7 +126,7 @@ vsnprintf(str, n, fmt, ap)
|
||||
char *str;
|
||||
size_t n;
|
||||
char *fmt;
|
||||
char *ap;
|
||||
va_list *ap;
|
||||
{
|
||||
struct sigaction osa, nsa;
|
||||
char *p;
|
||||
|
@ -4,13 +4,14 @@
|
||||
#include "config.h"
|
||||
|
||||
#include <sys/types.h> /* For size_t */
|
||||
#include <varargs.h> /* For va_list */
|
||||
|
||||
#ifndef HAVE_SNPRINTF
|
||||
int snprintf(char *str, size_t n, char const *fmt, ...);
|
||||
#endif /* !HAVE_SNPRINTF */
|
||||
|
||||
#ifndef HAVE_VSNPRINTF
|
||||
int vsnprintf(char *str, size_t n, char *fmt, char *ap);
|
||||
int vsnprintf(char *str, size_t n, char *fmt, va_list *ap);
|
||||
#endif /* !HAVE_SNPRINTF */
|
||||
|
||||
|
||||
|
4
ssh.1
4
ssh.1
@ -9,7 +9,7 @@
|
||||
.\"
|
||||
.\" Created: Sat Apr 22 21:55:14 1995 ylo
|
||||
.\"
|
||||
.\" $Id: ssh.1,v 1.16 2000/01/22 08:57:40 damien Exp $
|
||||
.\" $Id: ssh.1,v 1.17 2000/03/03 11:48:49 damien Exp $
|
||||
.\"
|
||||
.Dd September 25, 1999
|
||||
.Dt SSH 1
|
||||
@ -626,7 +626,7 @@ forward privileged ports.
|
||||
Gives the verbosity level that is used when logging messages from
|
||||
.Nm ssh .
|
||||
The possible values are:
|
||||
QUIET, FATAL, ERROR, INFO, CHAT and DEBUG.
|
||||
QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG.
|
||||
The default is INFO.
|
||||
.It Cm NumberOfPasswordPrompts
|
||||
Specifies the number of password prompts before giving up. The
|
||||
|
Loading…
Reference in New Issue
Block a user