Remove commented cruft from src/sock.c

This commit is contained in:
XANTRONIX Development 2020-07-02 16:04:03 -04:00 committed by XANTRONIX Industrial
parent f835f19e53
commit 484e68e417

View file

@ -14,7 +14,6 @@
static int bind_pty(patty_ax25_sock *sock) { static int bind_pty(patty_ax25_sock *sock) {
struct termios t; struct termios t;
int pty;
if ((sock->fd = open("/dev/ptmx", O_RDWR)) < 0) { if ((sock->fd = open("/dev/ptmx", O_RDWR)) < 0) {
goto error_open; goto error_open;
@ -32,10 +31,6 @@ static int bind_pty(patty_ax25_sock *sock) {
goto error_ptsname_r; goto error_ptsname_r;
} }
/*if ((pty = open(sock->path, O_RDWR)) < 0) {
goto error_open_pty;
}*/
if (tcgetattr(sock->fd, &t) < 0) { if (tcgetattr(sock->fd, &t) < 0) {
goto error_tcgetattr; goto error_tcgetattr;
} }
@ -46,17 +41,12 @@ static int bind_pty(patty_ax25_sock *sock) {
goto error_tcsetattr; goto error_tcsetattr;
} }
//close(pty);
sock->opts |= PATTY_AX25_SOCK_PTY; sock->opts |= PATTY_AX25_SOCK_PTY;
return 0; return 0;
error_tcsetattr: error_tcsetattr:
error_tcgetattr: error_tcgetattr:
//close(pty);
error_open_pty:
error_ptsname_r: error_ptsname_r:
error_unlockpt: error_unlockpt:
error_grantpt: error_grantpt: