mirror of
https://github.com/sudo-project/sudo.git
synced 2025-09-01 06:45:10 +00:00
Update function names in debug_decl.
This commit is contained in:
@@ -119,7 +119,7 @@ tcsetattr_nobg(int fd, int flags, struct termios *tp)
|
|||||||
bool
|
bool
|
||||||
sudo_term_restore_v1(int fd, bool flush)
|
sudo_term_restore_v1(int fd, bool flush)
|
||||||
{
|
{
|
||||||
debug_decl(term_restore, SUDO_DEBUG_UTIL)
|
debug_decl(sudo_term_restore, SUDO_DEBUG_UTIL)
|
||||||
|
|
||||||
if (changed) {
|
if (changed) {
|
||||||
const int flags = flush ? (TCSASOFT|TCSAFLUSH) : (TCSASOFT|TCSADRAIN);
|
const int flags = flush ? (TCSASOFT|TCSAFLUSH) : (TCSASOFT|TCSADRAIN);
|
||||||
@@ -137,7 +137,7 @@ sudo_term_restore_v1(int fd, bool flush)
|
|||||||
bool
|
bool
|
||||||
sudo_term_noecho_v1(int fd)
|
sudo_term_noecho_v1(int fd)
|
||||||
{
|
{
|
||||||
debug_decl(term_noecho, SUDO_DEBUG_UTIL)
|
debug_decl(sudo_term_noecho, SUDO_DEBUG_UTIL)
|
||||||
|
|
||||||
again:
|
again:
|
||||||
if (!changed && tcgetattr(fd, &oterm) != 0)
|
if (!changed && tcgetattr(fd, &oterm) != 0)
|
||||||
@@ -167,7 +167,7 @@ bool
|
|||||||
sudo_term_raw_v1(int fd, int isig)
|
sudo_term_raw_v1(int fd, int isig)
|
||||||
{
|
{
|
||||||
struct termios term;
|
struct termios term;
|
||||||
debug_decl(term_raw, SUDO_DEBUG_UTIL)
|
debug_decl(sudo_term_raw, SUDO_DEBUG_UTIL)
|
||||||
|
|
||||||
again:
|
again:
|
||||||
if (!changed && tcgetattr(fd, &oterm) != 0)
|
if (!changed && tcgetattr(fd, &oterm) != 0)
|
||||||
@@ -200,7 +200,7 @@ again:
|
|||||||
bool
|
bool
|
||||||
sudo_term_cbreak_v1(int fd)
|
sudo_term_cbreak_v1(int fd)
|
||||||
{
|
{
|
||||||
debug_decl(term_cbreak, SUDO_DEBUG_UTIL)
|
debug_decl(sudo_term_cbreak, SUDO_DEBUG_UTIL)
|
||||||
|
|
||||||
again:
|
again:
|
||||||
if (!changed && tcgetattr(fd, &oterm) != 0)
|
if (!changed && tcgetattr(fd, &oterm) != 0)
|
||||||
@@ -238,7 +238,7 @@ bool
|
|||||||
sudo_term_copy_v1(int src, int dst)
|
sudo_term_copy_v1(int src, int dst)
|
||||||
{
|
{
|
||||||
struct termios tt;
|
struct termios tt;
|
||||||
debug_decl(term_copy, SUDO_DEBUG_UTIL)
|
debug_decl(sudo_term_copy, SUDO_DEBUG_UTIL)
|
||||||
|
|
||||||
again:
|
again:
|
||||||
if (tcgetattr(src, &tt) != 0)
|
if (tcgetattr(src, &tt) != 0)
|
||||||
|
Reference in New Issue
Block a user