You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
703 B

  1. From 7d4caa6a60af0e584dc5c3dc44437117744f6f84 Mon Sep 17 00:00:00 2001
  2. From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= <jelmer@jelmer.uk>
  3. Date: Sat, 14 Jan 2017 20:55:00 +0000
  4. Subject: [PATCH] Use sys/socket.h rather than asm/socket.h.
  5. The latter is not available on some platforms.
  6. ---
  7. core/quasselc-connector.c | 2 +-
  8. 1 file changed, 1 insertion(+), 1 deletion(-)
  9. diff --git a/core/quasselc-connector.c b/core/quasselc-connector.c
  10. index 08a3718..77e8d7a 100644
  11. --- a/core/quasselc-connector.c
  12. +++ b/core/quasselc-connector.c
  13. @@ -16,7 +16,7 @@
  14. */
  15. #define _GNU_SOURCE
  16. -#include <asm/socket.h>
  17. +#include <sys/socket.h>
  18. #include <sys/types.h>
  19. #include <sys/socket.h>
  20. #include <sys/wait.h>
  21. --
  22. 2.19.1