aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-02-10 16:47:05 +0800
committerYuqian Yang <crupest@crupest.life>2025-02-28 17:16:02 +0800
commit5cb97aee88271dfd25c20629052b3d89f05e63c2 (patch)
treea7ce265cba647178cb998930ec968cbba3aae33b /examples
parent42ba662f8b7d39aa29cbc21f6f7ecc69489d142d (diff)
downloadpam-5cb97aee88271dfd25c20629052b3d89f05e63c2.tar.gz
pam-5cb97aee88271dfd25c20629052b3d89f05e63c2.tar.bz2
pam-5cb97aee88271dfd25c20629052b3d89f05e63c2.zip
(GNU/Hurd) port Linux-specific api.
Diffstat (limited to 'examples')
-rw-r--r--examples/tty_conv.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/tty_conv.c b/examples/tty_conv.c
index 59bbb3b3..0a7af97c 100644
--- a/examples/tty_conv.c
+++ b/examples/tty_conv.c
@@ -8,7 +8,6 @@
#include <unistd.h>
#include <termios.h>
#include <security/pam_appl.h>
-#include <sys/ioctl.h>
/***************************************
* @brief echo off/on
@@ -18,7 +17,7 @@
static void echoOff(int fd, int off)
{
struct termios tty;
- if (ioctl(fd, TCGETA, &tty) < 0)
+ if (tcgetattr(fd, &tty) < 0)
{
fprintf(stderr, "TCGETA failed: %s\n", strerror(errno));
return;
@@ -27,7 +26,7 @@ static void echoOff(int fd, int off)
if (off)
{
tty.c_lflag &= ~(ECHO | ECHOE | ECHOK | ECHONL);
- if (ioctl(fd, TCSETAF, &tty) < 0)
+ if (tcsetattr(fd, TCSAFLUSH, &tty) < 0)
{
fprintf(stderr, "TCSETAF failed: %s\n", strerror(errno));
}
@@ -35,7 +34,7 @@ static void echoOff(int fd, int off)
else
{
tty.c_lflag |= (ECHO | ECHOE | ECHOK | ECHONL);
- if (ioctl(fd, TCSETAW, &tty) < 0)
+ if (tcsetattr(fd, TCSADRAIN, &tty) < 0)
{
fprintf(stderr, "TCSETAW failed: %s\n", strerror(errno));
}