0001-use-userspace-headers-for-ax25-instead-of-kernel.patch 946 B

1234567891011121314151617181920212223242526
  1. From b0e66a2d084ffc210bc1fc247efb4d177e9f7e3d Mon Sep 17 00:00:00 2001
  2. From: Dave Jones <davej@codemonkey.org.uk>
  3. Date: Mon, 5 Dec 2016 12:46:14 -0500
  4. Subject: [PATCH] use userspace headers for ax25 instead of kernel.
  5. This should solve https://bugzilla.redhat.com/show_bug.cgi?id=1400720
  6. [Upstream commit: https://github.com/kernelslacker/trinity/commit/b0e66a2d084ffc210bc1fc247efb4d177e9f7e3d]
  7. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  8. ---
  9. net/proto-rose.c | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/net/proto-rose.c b/net/proto-rose.c
  12. index ccbf294f..b277f839 100644
  13. --- a/net/proto-rose.c
  14. +++ b/net/proto-rose.c
  15. @@ -6,7 +6,7 @@
  16. #include <sys/un.h>
  17. #include <netinet/in.h>
  18. #include <bits/sockaddr.h>
  19. -#include <linux/ax25.h> /* for ax25_address in rose.h */
  20. +#include <netax25/ax25.h> /* for ax25_address in rose.h */
  21. #include <netrose/rose.h>
  22. #include <stdlib.h>
  23. #include "net.h"