summaryrefslogtreecommitdiff
path: root/channels.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-11-12 11:04:54 +1100
committerDamien Miller <djm@mindrot.org>2001-11-12 11:04:54 +1100
commit36f8dd3ed66b71fe661ed0c7a5f292bbdc8f87e3 (patch)
tree55bf35b370ff4f9752ad1edb1c5e0c8b29fb9ba9 /channels.h
parent6fd5b391f0fdb81dcd80cf464774c7bb624f9afa (diff)
- markus@cvs.openbsd.org 2001/11/07 22:53:21
[channels.h] crank c->path to 256 so they can hold a full hostname; dwd@bell-labs.com
Diffstat (limited to 'channels.h')
-rw-r--r--channels.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels.h b/channels.h
index 89e48009d..11ebb7b3a 100644
--- a/channels.h
+++ b/channels.h
@@ -32,7 +32,7 @@
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 */ 34 */
35/* RCSID("$OpenBSD: channels.h,v 1.50 2001/10/10 22:18:47 markus Exp $"); */ 35/* RCSID("$OpenBSD: channels.h,v 1.51 2001/11/07 22:53:21 markus Exp $"); */
36 36
37#ifndef CHANNEL_H 37#ifndef CHANNEL_H
38#define CHANNEL_H 38#define CHANNEL_H
@@ -56,7 +56,7 @@
56#define SSH_CHANNEL_ZOMBIE 14 /* Almost dead. */ 56#define SSH_CHANNEL_ZOMBIE 14 /* Almost dead. */
57#define SSH_CHANNEL_MAX_TYPE 15 57#define SSH_CHANNEL_MAX_TYPE 15
58 58
59#define SSH_CHANNEL_PATH_LEN 30 59#define SSH_CHANNEL_PATH_LEN 256
60 60
61struct Channel; 61struct Channel;
62typedef struct Channel Channel; 62typedef struct Channel Channel;