[ssh.c]
     remove unused
This commit is contained in:
Damien Miller 2001-11-12 10:51:40 +11:00
parent 00b61645eb
commit 595bb4f572
2 changed files with 5 additions and 10 deletions

View File

@ -5,6 +5,9 @@
- markus@cvs.openbsd.org 2001/10/24 08:41:41
[sshd.c]
mention remote port in debug message
- markus@cvs.openbsd.org 2001/10/24 08:41:20
[ssh.c]
remove unused
20011109
- (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK)
@ -6814,4 +6817,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1635 2001/11/11 23:51:23 djm Exp $
$Id: ChangeLog,v 1.1636 2001/11/11 23:51:40 djm Exp $

10
ssh.c
View File

@ -39,7 +39,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: ssh.c,v 1.147 2001/10/08 19:05:05 markus Exp $");
RCSID("$OpenBSD: ssh.c,v 1.148 2001/10/24 08:41:20 markus Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@ -131,14 +131,6 @@ char *host;
/* socket address the host resolves to */
struct sockaddr_storage hostaddr;
/*
* Flag to indicate that we have received a window change signal which has
* not yet been processed. This will cause a message indicating the new
* window size to be sent to the server a little later. This is volatile
* because this is updated in a signal handler.
*/
volatile int received_window_change_signal = 0;
/* Private host keys. */
struct {
Key **keys;