summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-11-07 22:53:22 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-11-07 22:53:22 +0000
commit0dbd7264a995760865d21e30c02e007a20e88fdd (patch)
tree8c29fa8d13266ee1f16efa20e8384ff5e4fd0922 /usr.bin
parent26e9bafc19aa7302818316fe9190380a4e6101ae (diff)
crank c->path to 256 so they can hold a full hostname; dwd@bell-labs.com
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/channels.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/channels.h b/usr.bin/ssh/channels.h
index 89e48009dd5..11ebb7b3a55 100644
--- a/usr.bin/ssh/channels.h
+++ b/usr.bin/ssh/channels.h
@@ -32,7 +32,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: channels.h,v 1.50 2001/10/10 22:18:47 markus Exp $"); */
+/* RCSID("$OpenBSD: channels.h,v 1.51 2001/11/07 22:53:21 markus Exp $"); */
#ifndef CHANNEL_H
#define CHANNEL_H
@@ -56,7 +56,7 @@
#define SSH_CHANNEL_ZOMBIE 14 /* Almost dead. */
#define SSH_CHANNEL_MAX_TYPE 15
-#define SSH_CHANNEL_PATH_LEN 30
+#define SSH_CHANNEL_PATH_LEN 256
struct Channel;
typedef struct Channel Channel;