0005-nfs-utils-add-missing-include-of-stdint.h.patch 853 B

123456789101112131415161718192021222324252627282930313233
  1. From b3ff26fa182b34b6faa1317f18a9dac4c7963334 Mon Sep 17 00:00:00 2001
  2. From: Matt Weber <matthew.weber@rockwellcollins.com>
  3. Date: Mon, 2 Oct 2017 09:57:15 -0500
  4. Subject: [PATCH] nfs-utils: add missing include of stdint.h
  5. Glibc bump to 2.26 exposed this missing header when building
  6. with the following combination using an i386 internal toolchain.
  7. gcc5.4.0
  8. bin2.28.1
  9. linux4.1.43
  10. Upstream: https://bugzilla.linux-nfs.org/show_bug.cgi?id=312
  11. Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com>
  12. ---
  13. support/nsm/rpc.c | 1 +
  14. 1 file changed, 1 insertion(+)
  15. diff --git a/support/nsm/rpc.c b/support/nsm/rpc.c
  16. index 4e5f40e..d91c6ea 100644
  17. --- a/support/nsm/rpc.c
  18. +++ b/support/nsm/rpc.c
  19. @@ -40,6 +40,7 @@
  20. #include <time.h>
  21. #include <stdbool.h>
  22. +#include <stdint.h>
  23. #include <string.h>
  24. #include <unistd.h>
  25. #include <fcntl.h>
  26. --
  27. 1.9.1