Remove unused resppause member

This commit is contained in:
Krystian Dużyński 2020-08-12 00:21:24 +02:00
parent 5eb74fa568
commit 965ff443c8
2 changed files with 0 additions and 3 deletions

View File

@ -73,7 +73,6 @@ cfg_init(void)
cfg.maxtry = DEFAULT_MAXTRY;
cfg.rqstpause = DEFAULT_RQSTPAUSE;
cfg.respwait = DEFAULT_RESPWAIT;
cfg.resppause = DV(3, DEFAULT_BITS_PER_CHAR, cfg.ttyspeed);
cfg.conntimeout = DEFAULT_CONNTIMEOUT;
}

View File

@ -72,8 +72,6 @@ typedef struct
unsigned long rqstpause;
/* response waiting time (in msec) */
unsigned long respwait;
/* inter-byte response pause (in usec) */
unsigned long resppause;
} cfg_t;
/* Prototypes */