diff options
author | 2001-05-24 18:57:53 +0000 | |
---|---|---|
committer | 2001-05-24 18:57:53 +0000 | |
commit | 38cadb58c84df3b56324878c056b5c2bebb2aa4b (patch) | |
tree | abb84431d804f90a76347b9dfd01c34ded96eb60 /usr.bin/ssh/ssh.h | |
parent | Move duplication of header (and tags) after assigning the flags, so (diff) | |
download | wireguard-openbsd-38cadb58c84df3b56324878c056b5c2bebb2aa4b.tar.xz wireguard-openbsd-38cadb58c84df3b56324878c056b5c2bebb2aa4b.zip |
don't perform escape processing when ``EscapeChar none''; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r-- | usr.bin/ssh/ssh.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h index 63c75875c05..0db7e6b88ff 100644 --- a/usr.bin/ssh/ssh.h +++ b/usr.bin/ssh/ssh.h @@ -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 @@ -82,4 +82,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 */ |