summaryrefslogtreecommitdiff
path: root/session.h
diff options
context:
space:
mode:
Diffstat (limited to 'session.h')
-rw-r--r--session.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/session.h b/session.h
index 405b8fe8a..e52506652 100644
--- a/session.h
+++ b/session.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: session.h,v 1.21 2003/09/23 20:17:11 markus Exp $ */ 1/* $OpenBSD: session.h,v 1.22 2004/04/27 09:46:37 djm Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 4 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
@@ -53,6 +53,11 @@ struct Session {
53 /* proto 2 */ 53 /* proto 2 */
54 int chanid; 54 int chanid;
55 int is_subsystem; 55 int is_subsystem;
56 int num_env;
57 struct {
58 char *name;
59 char *val;
60 } *env;
56}; 61};
57 62
58void do_authenticated(Authctxt *); 63void do_authenticated(Authctxt *);