Bez popisu

100-nl_handle_alloc.patch 529B

1234567891011121314151617181920212223
  1. --- a/main.c
  2. +++ b/main.c
  3. @@ -100,7 +100,7 @@ struct l2tp_data {
  4. };
  5. /* netlink socket */
  6. -static struct nl_handle *nl_sock;
  7. +static struct nl_sock *nl_sock;
  8. static int nl_family;
  9. /*****************************************************************************
  10. @@ -788,9 +788,9 @@ static int do_show(int argc, char **argv
  11. int do_ipl2tp(int argc, char **argv)
  12. {
  13. - nl_sock = nl_handle_alloc();
  14. + nl_sock = nl_socket_alloc();
  15. if (!nl_sock) {
  16. - perror("nl_handle_alloc");
  17. + perror("nl_socket_alloc");
  18. return 1;
  19. }