diff options
author | Kirill A. Shutemov <kirill@shutemov.name> | 2008-09-22 13:57:43 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-09-23 08:09:13 -0700 |
commit | c32a162fd420fe8dfb049db941b2438061047fcc (patch) | |
tree | bea33ba6fb2d63044b00e6603a226d8b65ce973b /include | |
parent | 683f40d7e7eee06811db43cb4c45349eab0d539e (diff) | |
download | linux-3.10-c32a162fd420fe8dfb049db941b2438061047fcc.tar.gz linux-3.10-c32a162fd420fe8dfb049db941b2438061047fcc.tar.bz2 linux-3.10-c32a162fd420fe8dfb049db941b2438061047fcc.zip |
smb.h: do not include linux/time.h in userspace
linux/time.h conflicts with time.h from glibc
It breaks building smbmount from samba. It's regression introduced by
commit 76308da (" smb.h: uses struct timespec but didn't include
linux/time.h").
Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
Cc: <stable@kernel.org> [2.6.26.x]
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/smb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/smb.h b/include/linux/smb.h index caa43b2370c..82fefddc598 100644 --- a/include/linux/smb.h +++ b/include/linux/smb.h @@ -11,7 +11,9 @@ #include <linux/types.h> #include <linux/magic.h> +#ifdef __KERNEL__ #include <linux/time.h> +#endif enum smb_protocol { SMB_PROTOCOL_NONE, |