diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-09-27 11:59:38 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-09-27 11:59:38 +0000 |
commit | b96a89d78f2f6e7de13fff2ebe8d83c9f9c5df55 (patch) | |
tree | a8275157f6e0840549362987553134e4e69bfdb0 /usr.bin | |
parent | 1245aef9a3d6e180ebfbeba63cbd83a911cfa324 (diff) |
missing called=1; chombier@mac.com
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/packet.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/packet.c b/usr.bin/ssh/packet.c index 09f663db6ff..5887d87fe1c 100644 --- a/usr.bin/ssh/packet.c +++ b/usr.bin/ssh/packet.c @@ -37,7 +37,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: packet.c,v 1.69 2001/06/25 08:25:38 markus Exp $"); +RCSID("$OpenBSD: packet.c,v 1.70 2001/09/27 11:59:37 markus Exp $"); #include "xmalloc.h" #include "buffer.h" @@ -1226,6 +1226,7 @@ packet_set_maxsize(int s) log("packet_set_maxsize: bad size %d", s); return -1; } + called = 1; debug("packet_set_maxsize: setting to %d", s); max_packet_size = s; return s; |