summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
Diffstat (limited to 'session.c')
-rw-r--r--session.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/session.c b/session.c
index 43cbd00b9..a5ad077c9 100644
--- a/session.c
+++ b/session.c
@@ -33,7 +33,7 @@
33 */ 33 */
34 34
35#include "includes.h" 35#include "includes.h"
36RCSID("$OpenBSD: session.c,v 1.116 2001/12/28 12:14:27 markus Exp $"); 36RCSID("$OpenBSD: session.c,v 1.117 2001/12/28 14:50:54 markus Exp $");
37 37
38#include "ssh.h" 38#include "ssh.h"
39#include "ssh1.h" 39#include "ssh1.h"
@@ -233,7 +233,7 @@ do_authenticated1(Authctxt *authctxt)
233{ 233{
234 Session *s; 234 Session *s;
235 char *command; 235 char *command;
236 int success, type, plen, screen_flag; 236 int success, type, screen_flag;
237 int compression_level = 0, enable_compression_after_reply = 0; 237 int compression_level = 0, enable_compression_after_reply = 0;
238 u_int proto_len, data_len, dlen; 238 u_int proto_len, data_len, dlen;
239 239
@@ -249,7 +249,7 @@ do_authenticated1(Authctxt *authctxt)
249 success = 0; 249 success = 0;
250 250
251 /* Get a packet from the client. */ 251 /* Get a packet from the client. */
252 type = packet_read(&plen); 252 type = packet_read();
253 253
254 /* Process the packet. */ 254 /* Process the packet. */
255 switch (type) { 255 switch (type) {