Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openwrt/mtk-wifi-gpl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-09-26 13:34:01 +0400
committerFelix Fietkau <nbd@openwrt.org>2014-09-26 16:58:30 +0400
commit9eb897d9041c58df1f1b4f0788c6c78ca5487b0e (patch)
treeab2be2c309755c1a88df01385c1ef5ba169b777a
parent30fae9649cc09de710e5552454bc2f1379eef856 (diff)
include/os/rt_linux.h: update type definitions for uid / gid for newer kernels
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
-rwxr-xr-xinclude/os/rt_linux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/os/rt_linux.h b/include/os/rt_linux.h
index 9c6c9ef..d7d5518 100755
--- a/include/os/rt_linux.h
+++ b/include/os/rt_linux.h
@@ -268,8 +268,8 @@ typedef struct file* RTMP_OS_FD;
typedef struct _OS_FS_INFO_
{
- int fsuid;
- int fsgid;
+ kuid_t fsuid;
+ kgid_t fsgid;
mm_segment_t fs;
} OS_FS_INFO;