src: work with typeof

Although not officially supported, we have found that the
xtables-addons modules we are interested in work fine on 3.0.4 with a
slight non-invasive mod to compat_xtables.h.
This commit is contained in:
Adam Butcher
2014-09-03 13:23:29 +00:00
committed by Jan Engelhardt
parent 431062c6ec
commit 4c21811919

View File

@@ -54,8 +54,8 @@ static inline struct inode *file_inode(struct file *f)
#endif
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 10, 0)
static inline void
proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid)
static inline void proc_set_user(struct proc_dir_entry *de,
typeof(de->uid) uid, typeof(de->gid) gid)
{
de->uid = uid;
de->gid = gid;