removed unused jump_buf

This commit is contained in:
chombier 2001-04-23 09:41:39 +00:00
parent 477f77f96c
commit 0c1af4ef61
1 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@
#define ERROR_BUF_SIZE 512 #define ERROR_BUF_SIZE 512
typedef struct lshcontext { typedef struct lshcontext {
short _port; // for BetterTelnet's networking int _port; // for BetterTelnet's networking
void *_userdata; // available for callers void *_userdata; // available for callers
pthread_t _thread; pthread_t _thread;
int _forward; int _forward;
@ -25,7 +25,6 @@ typedef struct lshcontext {
int _listener; // for cvs int _listener; // for cvs
int _socket; // for cvs int _socket; // for cvs
int _rcmdline; // for cvs int _rcmdline; // for cvs
jmp_buf _exitbuf;
jmp_buf *_pexitbuf; jmp_buf *_pexitbuf;
char *_gMemPool; char *_gMemPool;
int _filesTable[MAXFILESCOUNT]; int _filesTable[MAXFILESCOUNT];
@ -70,6 +69,8 @@ typedef struct lshcontext {
int _pindex; int _pindex;
char _keychainprompt[256]; char _keychainprompt[256];
struct lshcontext *_self;
} lshcontext; } lshcontext;
extern pthread_key_t ssh2threadkey; extern pthread_key_t ssh2threadkey;