blob: fb6e467c93424815a955e667c435a600ccec5366 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From d95f494de1aa8123c74170ffebaed8ea89649da2 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 13 Jul 2017 23:33:44 -0700
4Subject: [PATCH 5/5] include sys/types.h for u_int32_t in attr/attributes.h
5
6error: unknown type name 'u_int32_t'
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9---
10 restore/content.c | 1 +
11 1 file changed, 1 insertion(+)
12
13diff --git a/restore/content.c b/restore/content.c
14index 7c4a81f..1d5de1b 100644
15--- a/restore/content.c
16+++ b/restore/content.c
17@@ -24,6 +24,7 @@
18 #include <sys/param.h>
19 #include <sys/stat.h>
20 #include <sys/ioctl.h>
21+#include <sys/types.h>
22 #include <attr/attributes.h>
23 #include <xfs/handle.h>
24 #include <time.h>
25--
262.13.2
27