Don't need that...for the time being

This commit is contained in:
XANTRONIX Development 2020-06-20 22:14:06 -04:00 committed by XANTRONIX Industrial
parent c4fa41dab4
commit aa1ccd792a

View file

@ -300,10 +300,6 @@ int patty_ax25_server_add_if(patty_ax25_server *server,
}
}
if (patty_dict_set(server->socks_by_fd, NULL + fd, sizeof(fd), iface) == NULL) {
goto error_dict_set;
}
if (patty_list_append(server->ifaces, iface) == NULL) {
goto error_list_append;
}
@ -311,7 +307,6 @@ int patty_ax25_server_add_if(patty_ax25_server *server,
return 0;
error_list_append:
error_dict_set:
return -1;
}