- 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
|
- 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
|
us. Needed to work around messy IPv6 on Linux. Patch from Arkadiusz
|
||||||
Miskiewicz <misiek@pld.org.pl>
|
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
|
20000302
|
||||||
- Big cleanup of autoconf code
|
- Big cleanup of autoconf code
|
||||||
|
|
|
@ -126,7 +126,7 @@ vsnprintf(str, n, fmt, ap)
|
||||||
char *str;
|
char *str;
|
||||||
size_t n;
|
size_t n;
|
||||||
char *fmt;
|
char *fmt;
|
||||||
char *ap;
|
va_list *ap;
|
||||||
{
|
{
|
||||||
struct sigaction osa, nsa;
|
struct sigaction osa, nsa;
|
||||||
char *p;
|
char *p;
|
||||||
|
|
|
@ -4,13 +4,14 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include <sys/types.h> /* For size_t */
|
#include <sys/types.h> /* For size_t */
|
||||||
|
#include <varargs.h> /* For va_list */
|
||||||
|
|
||||||
#ifndef HAVE_SNPRINTF
|
#ifndef HAVE_SNPRINTF
|
||||||
int snprintf(char *str, size_t n, char const *fmt, ...);
|
int snprintf(char *str, size_t n, char const *fmt, ...);
|
||||||
#endif /* !HAVE_SNPRINTF */
|
#endif /* !HAVE_SNPRINTF */
|
||||||
|
|
||||||
#ifndef HAVE_VSNPRINTF
|
#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 */
|
#endif /* !HAVE_SNPRINTF */
|
||||||
|
|
||||||
|
|
||||||
|
|
4
ssh.1
4
ssh.1
|
@ -9,7 +9,7 @@
|
||||||
.\"
|
.\"
|
||||||
.\" Created: Sat Apr 22 21:55:14 1995 ylo
|
.\" 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
|
.Dd September 25, 1999
|
||||||
.Dt SSH 1
|
.Dt SSH 1
|
||||||
|
@ -626,7 +626,7 @@ forward privileged ports.
|
||||||
Gives the verbosity level that is used when logging messages from
|
Gives the verbosity level that is used when logging messages from
|
||||||
.Nm ssh .
|
.Nm ssh .
|
||||||
The possible values are:
|
The possible values are:
|
||||||
QUIET, FATAL, ERROR, INFO, CHAT and DEBUG.
|
QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG.
|
||||||
The default is INFO.
|
The default is INFO.
|
||||||
.It Cm NumberOfPasswordPrompts
|
.It Cm NumberOfPasswordPrompts
|
||||||
Specifies the number of password prompts before giving up. The
|
Specifies the number of password prompts before giving up. The
|
||||||
|
|
Loading…
Reference in New Issue