summaryrefslogtreecommitdiff
path: root/compat.h
diff options
context:
space:
mode:
authormouring <mouring>2001-01-09 00:35:42 +0000
committermouring <mouring>2001-01-09 00:35:42 +0000
commit0d32322df05d46e7e0bd322f2ac203a14daa00c3 (patch)
treec4631e7ac3a3ad4b9e626694a193ad4f7e425f36 /compat.h
parent7f19c1f6880342b02768d00e2df3d1c2ee1a13ec (diff)
downloadopenssh-0d32322df05d46e7e0bd322f2ac203a14daa00c3.tar.gz
- (bal) OpenBSD Sync
- markus@cvs.openbsd.org 2001/01/08 22:29:05 [auth2.c compat.c compat.h servconf.c servconf.h sshd.8 sshd_config version.h] implement option 'Banner /etc/issue.net' for ssh2, move version to 2.3.1 (needed for bugcompat detection, 2.3.0 would fail if Banner is enabled). - markus@cvs.openbsd.org 2001/01/08 22:03:23 [channels.c ssh-keyscan.c] O_NDELAY -> O_NONBLOCK; thanks stevesk@pobox.com - markus@cvs.openbsd.org 2001/01/08 21:55:41 [sshconnect1.c] more cleanups and fixes from stevesk@pobox.com: 1) try_agent_authentication() for loop will overwrite key just allocated with key_new(); don't alloc 2) call ssh_close_authentication_connection() before exit try_agent_authentication() 3) free mem on bad passphrase in try_rsa_authentication() - markus@cvs.openbsd.org 2001/01/08 21:48:17 [kex.c] missing free; thanks stevesk@pobox.com
Diffstat (limited to 'compat.h')
-rw-r--r--compat.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/compat.h b/compat.h
index cf97c7d2..fb65cd6d 100644
--- a/compat.h
+++ b/compat.h
@@ -21,7 +21,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-/* RCSID("$OpenBSD: compat.h,v 1.13 2000/12/06 22:58:15 markus Exp $"); */
+/* RCSID("$OpenBSD: compat.h,v 1.14 2001/01/08 22:29:05 markus Exp $"); */
#ifndef COMPAT_H
#define COMPAT_H
@@ -38,6 +38,7 @@
#define SSH_OLD_SESSIONID 0x10
#define SSH_BUG_PKAUTH 0x20
#define SSH_BUG_DEBUG 0x40
+#define SSH_BUG_BANNER 0x80
void enable_compat13(void);
void enable_compat20(void);