mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
8e04a1f96e
prevent programming (== vs. =) errors, but it confused the hell out of me at least.
36 lines
1.0 KiB
Plaintext
36 lines
1.0 KiB
Plaintext
--- ./console/console.c Sat Nov 22 20:11:48 1997
|
|
+++ ./console/console.c Sat Aug 23 17:40:44 1997
|
|
@@ -367,15 +367,15 @@
|
|
|
|
#if USE_TERMIOS
|
|
- if (0 != ioctl(0, TCGETS, & o_tios)) {
|
|
+ if (0 != tcgetattr(0, & o_tios)) {
|
|
fprintf(stderr, "%s: iotcl: getsw: %s\n", progname, strerror(errno));
|
|
exit(10);
|
|
}
|
|
n_tios = o_tios;
|
|
- n_tios.c_iflag &= ~(INLCR|IGNCR|ICRNL|IUCLC|IXON);
|
|
+ n_tios.c_iflag &= ~(INLCR|IGNCR|ICRNL|IXON);
|
|
n_tios.c_oflag &= ~OPOST;
|
|
n_tios.c_lflag &= ~(ICANON|ISIG|ECHO);
|
|
n_tios.c_cc[VMIN] = 1;
|
|
n_tios.c_cc[VTIME] = 0;
|
|
- if (0 != ioctl(0, TCSETS, & n_tios)) {
|
|
+ if (0 != tcsetattr(0, TCSANOW, & n_tios)) {
|
|
fprintf(stderr, "%s: getarrt: %s\n", progname, strerror(errno));
|
|
exit(10);
|
|
@@ -453,5 +453,5 @@
|
|
return;
|
|
#if USE_TERMIOS
|
|
- (void)ioctl(0, TCSETS, (char *)&o_tios);
|
|
+ (void)tcsetattr(0, TCSANOW, &o_tios);
|
|
#else
|
|
#if USE_TERMIO
|
|
@@ -478,5 +478,5 @@
|
|
|
|
while (0 != iLen) {
|
|
- if (-1 == (nr = write(fd, pcBuf, iLen))) {
|
|
+ if (0 >= (nr = write(fd, pcBuf, iLen))) {
|
|
c2cooked();
|
|
fprintf(stderr, "%s: lost connection\n", progname);
|