summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--bsd-snprintf.c2
-rw-r--r--bsd-snprintf.h3
-rw-r--r--ssh.14
4 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 735444f1c..a385446ba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@
4 - Don't permanently fail on bind() if getaddrinfo has more choices left for 4 - Don't permanently fail on bind() if getaddrinfo has more choices left for
5 us. Needed to work around messy IPv6 on Linux. Patch from Arkadiusz 5 us. Needed to work around messy IPv6 on Linux. Patch from Arkadiusz
6 Miskiewicz <misiek@pld.org.pl> 6 Miskiewicz <misiek@pld.org.pl>
7 - DEC Unix compile fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
8 - Manpage fix from David Del Piero <David.DelPiero@qed.qld.gov.au>
7 9
820000302 1020000302
9 - Big cleanup of autoconf code 11 - Big cleanup of autoconf code
diff --git a/bsd-snprintf.c b/bsd-snprintf.c
index c1dcdab4b..69534ecf1 100644
--- a/bsd-snprintf.c
+++ b/bsd-snprintf.c
@@ -126,7 +126,7 @@ vsnprintf(str, n, fmt, ap)
126 char *str; 126 char *str;
127 size_t n; 127 size_t n;
128 char *fmt; 128 char *fmt;
129 char *ap; 129 va_list *ap;
130{ 130{
131 struct sigaction osa, nsa; 131 struct sigaction osa, nsa;
132 char *p; 132 char *p;
diff --git a/bsd-snprintf.h b/bsd-snprintf.h
index d4f83aac9..2360f7bf1 100644
--- a/bsd-snprintf.h
+++ b/bsd-snprintf.h
@@ -4,13 +4,14 @@
4#include "config.h" 4#include "config.h"
5 5
6#include <sys/types.h> /* For size_t */ 6#include <sys/types.h> /* For size_t */
7#include <varargs.h> /* For va_list */
7 8
8#ifndef HAVE_SNPRINTF 9#ifndef HAVE_SNPRINTF
9int snprintf(char *str, size_t n, char const *fmt, ...); 10int snprintf(char *str, size_t n, char const *fmt, ...);
10#endif /* !HAVE_SNPRINTF */ 11#endif /* !HAVE_SNPRINTF */
11 12
12#ifndef HAVE_VSNPRINTF 13#ifndef HAVE_VSNPRINTF
13int vsnprintf(char *str, size_t n, char *fmt, char *ap); 14int vsnprintf(char *str, size_t n, char *fmt, va_list *ap);
14#endif /* !HAVE_SNPRINTF */ 15#endif /* !HAVE_SNPRINTF */
15 16
16 17
diff --git a/ssh.1 b/ssh.1
index b6790f325..7bea1b132 100644
--- a/ssh.1
+++ b/ssh.1
@@ -9,7 +9,7 @@
9.\" 9.\"
10.\" Created: Sat Apr 22 21:55:14 1995 ylo 10.\" Created: Sat Apr 22 21:55:14 1995 ylo
11.\" 11.\"
12.\" $Id: ssh.1,v 1.16 2000/01/22 08:57:40 damien Exp $ 12.\" $Id: ssh.1,v 1.17 2000/03/03 11:48:49 damien Exp $
13.\" 13.\"
14.Dd September 25, 1999 14.Dd September 25, 1999
15.Dt SSH 1 15.Dt SSH 1
@@ -626,7 +626,7 @@ forward privileged ports.
626Gives the verbosity level that is used when logging messages from 626Gives the verbosity level that is used when logging messages from
627.Nm ssh . 627.Nm ssh .
628The possible values are: 628The possible values are:
629QUIET, FATAL, ERROR, INFO, CHAT and DEBUG. 629QUIET, FATAL, ERROR, INFO, VERBOSE and DEBUG.
630The default is INFO. 630The default is INFO.
631.It Cm NumberOfPasswordPrompts 631.It Cm NumberOfPasswordPrompts
632Specifies the number of password prompts before giving up. The 632Specifies the number of password prompts before giving up. The