diff options
author | 2013-10-14 21:20:52 +0000 | |
---|---|---|
committer | 2013-10-14 21:20:52 +0000 | |
commit | adb7fae82fe3f4982bab28b8f1edc2ff21fb1435 (patch) | |
tree | a2b4b477a1021ef99b4dd3caed8f5e634575b789 /usr.bin/ssh/session.h | |
parent | Fix a couple of style(9) nits. (diff) | |
download | wireguard-openbsd-adb7fae82fe3f4982bab28b8f1edc2ff21fb1435.tar.xz wireguard-openbsd-adb7fae82fe3f4982bab28b8f1edc2ff21fb1435.zip |
Add logging of session starts in a useful format; ok markus@ feedback and
ok dtucker@
Diffstat (limited to 'usr.bin/ssh/session.h')
-rw-r--r-- | usr.bin/ssh/session.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/session.h b/usr.bin/ssh/session.h index cbb8e3a32d1..6a2f35e41ff 100644 --- a/usr.bin/ssh/session.h +++ b/usr.bin/ssh/session.h @@ -1,4 +1,4 @@ -/* $OpenBSD: session.h,v 1.30 2008/05/08 12:21:16 djm Exp $ */ +/* $OpenBSD: session.h,v 1.31 2013/10/14 21:20:52 djm Exp $ */ /* * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. @@ -55,6 +55,7 @@ struct Session { int chanid; int *x11_chanids; int is_subsystem; + char *subsys; u_int num_env; struct { char *name; |