diff options
author | Violet Purcell <vimproved@inventati.org> | 2023-05-11 12:50:34 -0400 |
---|---|---|
committer | Dmitry V. Levin <ldv@strace.io> | 2023-05-12 02:09:07 +0000 |
commit | 5374f677e4cae669eb9accf2449178b602e8a40a (patch) | |
tree | 04a432bb67a1d6de92e53fccfc5d401c85869ad6 /examples | |
parent | c46bc41487d48759e9bf22e30142e1c1a9f9de11 (diff) | |
download | pam-5374f677e4cae669eb9accf2449178b602e8a40a.tar.gz pam-5374f677e4cae669eb9accf2449178b602e8a40a.tar.bz2 pam-5374f677e4cae669eb9accf2449178b602e8a40a.zip |
examples/tty_conv: fix build on musl
termio.h is the old System V version of the interface header, and is
only provided in glibc and dietlibc as far as I can tell.
This fixes it to use the POSIX termios.h instead.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/tty_conv.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/tty_conv.c b/examples/tty_conv.c index 23f0684c..9a0e1ad9 100644 --- a/examples/tty_conv.c +++ b/examples/tty_conv.c @@ -6,8 +6,9 @@ #include <string.h> #include <errno.h> #include <unistd.h> -#include <termio.h> +#include <termios.h> #include <security/pam_appl.h> +#include <sys/ioctl.h> /*************************************** * @brief echo off/on @@ -16,7 +17,7 @@ ***************************************/ static void echoOff(int fd, int off) { - struct termio tty; + struct termios tty; if (ioctl(fd, TCGETA, &tty) < 0) { fprintf(stderr, "TCGETA failed: %s\n", strerror(errno)); |