Replace two "return 0" with debug_return_bool(false).
This commit is contained in:
@@ -161,7 +161,7 @@ sudo_term_raw_v1(int fd, int isig)
|
|||||||
|
|
||||||
again:
|
again:
|
||||||
if (!changed && tcgetattr(fd, &oterm) != 0)
|
if (!changed && tcgetattr(fd, &oterm) != 0)
|
||||||
return 0;
|
debug_return_bool(false);
|
||||||
(void) memcpy(&term, &oterm, sizeof(term));
|
(void) memcpy(&term, &oterm, sizeof(term));
|
||||||
/* Set terminal to raw mode */
|
/* Set terminal to raw mode */
|
||||||
term.c_cc[VMIN] = 1;
|
term.c_cc[VMIN] = 1;
|
||||||
@@ -194,7 +194,7 @@ sudo_term_cbreak_v1(int fd)
|
|||||||
|
|
||||||
again:
|
again:
|
||||||
if (!changed && tcgetattr(fd, &oterm) != 0)
|
if (!changed && tcgetattr(fd, &oterm) != 0)
|
||||||
return 0;
|
debug_return_bool(false);
|
||||||
(void) memcpy(&term, &oterm, sizeof(term));
|
(void) memcpy(&term, &oterm, sizeof(term));
|
||||||
/* Set terminal to half-cooked mode */
|
/* Set terminal to half-cooked mode */
|
||||||
term.c_cc[VMIN] = 1;
|
term.c_cc[VMIN] = 1;
|
||||||
|
Reference in New Issue
Block a user