mirror of https://github.com/macssh/macssh.git
Remove _window_changed from lshcontext
This commit is contained in:
parent
c791d602bf
commit
e133135151
|
@ -5,7 +5,6 @@
|
|||
|
||||
#include <pthread.h>
|
||||
#include <setjmp.h>
|
||||
#include <signal.h>
|
||||
|
||||
#include "lsh_types.h"
|
||||
#include "lsh.h"
|
||||
|
@ -45,8 +44,6 @@ typedef struct lshcontext {
|
|||
int _verbosing;
|
||||
int _debugging;
|
||||
|
||||
sig_atomic_t _window_changed;
|
||||
|
||||
char *_envv[4]; // "HOME", "LOGNAME", "TERM", "DISPLAY"
|
||||
char _term[64]; // home and logname never change
|
||||
char _display[64]; // home and logname never change
|
||||
|
|
|
@ -1028,7 +1028,6 @@ void init_context(lshcontext *context, short port)
|
|||
context->_tracing = 0;
|
||||
context->_verbosing = 0;
|
||||
context->_debugging = 0;
|
||||
context->_window_changed = 0;
|
||||
context->_kpassword[0] = 0;
|
||||
context->_kindex = 0;
|
||||
context->_pindex = 0;
|
||||
|
|
Loading…
Reference in New Issue