*: hopefully all setup_common_bufsiz() are in place
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@@ -364,8 +364,6 @@ int conspy_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
||||
int conspy_main(int argc UNUSED_PARAM, char **argv)
|
||||
{
|
||||
char tty_name[sizeof(DEV_TTY "NN")];
|
||||
#define keybuf bb_common_bufsiz1
|
||||
#define sizeof_keybuf COMMON_BUFSIZE
|
||||
struct termios termbuf;
|
||||
unsigned opts;
|
||||
unsigned ttynum;
|
||||
@@ -384,6 +382,9 @@ int conspy_main(int argc UNUSED_PARAM, char **argv)
|
||||
|
||||
applet_long_options = getopt_longopts;
|
||||
#endif
|
||||
#define keybuf bb_common_bufsiz1
|
||||
setup_common_bufsiz();
|
||||
|
||||
INIT_G();
|
||||
strcpy(G.vcsa_name, DEV_VCSA);
|
||||
|
||||
@@ -515,7 +516,7 @@ int conspy_main(int argc UNUSED_PARAM, char **argv)
|
||||
default:
|
||||
// Read the keys pressed
|
||||
k = keybuf + G.key_count;
|
||||
bytes_read = read(G.kbd_fd, k, sizeof_keybuf - G.key_count);
|
||||
bytes_read = read(G.kbd_fd, k, COMMON_BUFSIZE - G.key_count);
|
||||
if (bytes_read < 0)
|
||||
goto abort;
|
||||
|
||||
|
Reference in New Issue
Block a user