diff options
author | Matt Johnston <matt@ucc.asn.au> | 2015-05-02 22:47:25 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2015-05-02 22:47:25 +0800 |
commit | 19e1afbd1ca6d306166ce74bcd6c6889f8d196f3 (patch) | |
tree | 682e347d7cd5cee4c388743781cd723fce0598a2 /common-session.c | |
parent | fee32054e68324f8c2e13858f21e2ac406190734 (diff) |
Fix no-writev fallback
Diffstat (limited to 'common-session.c')
-rw-r--r-- | common-session.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common-session.c b/common-session.c index 44e7030..083b5c5 100644 --- a/common-session.c +++ b/common-session.c @@ -1,7 +1,7 @@ /* * Dropbear - a SSH2 server * - * Copyright (c) 2002,2003 Matt Johnston + * Copyright (c) Matt Johnston * All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy @@ -280,7 +280,7 @@ void session_cleanup() { return; } - /* Beware of changing order of functions here. */ + /* BEWARE of changing order of functions here. */ /* Must be before extra_session_cleanup() */ chancleanup(); @@ -289,7 +289,7 @@ void session_cleanup() { ses.extra_session_cleanup(); } - /* After these are freed most functions will exit */ + /* After these are freed most functions will fail */ #ifdef DROPBEAR_CLEANUP /* listeners call cleanup functions, this should occur before other session state is freed. */ |