diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-06-05 22:32:21 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-06-05 22:32:21 +0200 |
commit | 2b1f71baeec8c1545885dc3ec5e3ac7d96319853 (patch) | |
tree | 721f4689e8ec622e2cc5e25c6ba36b5fab835f7b /ssh.h | |
parent | - markus@cvs.openbsd.org 2001/05/24 11:12:42 (diff) | |
download | openssh-2b1f71baeec8c1545885dc3ec5e3ac7d96319853.tar.xz openssh-2b1f71baeec8c1545885dc3ec5e3ac7d96319853.zip |
- stevesk@cvs.openbsd.org 2001/05/24 18:57:53
[clientloop.c readconf.c ssh.c ssh.h]
don't perform escape processing when ``EscapeChar none''; ok markus@
Diffstat (limited to 'ssh.h')
-rw-r--r-- | ssh.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -10,7 +10,7 @@ * called by a name other than "ssh" or "Secure Shell". */ -/* RCSID("$OpenBSD: ssh.h,v 1.62 2001/01/23 10:45:10 markus Exp $"); */ +/* RCSID("$OpenBSD: ssh.h,v 1.63 2001/05/24 18:57:53 stevesk Exp $"); */ #ifndef SSH_H #define SSH_H @@ -96,4 +96,7 @@ /* Name of Kerberos service for SSH to use. */ #define KRB4_SERVICE_NAME "rcmd" +/* Used to identify ``EscapeChar none'' */ +#define SSH_ESCAPECHAR_NONE -2 + #endif /* SSH_H */ |