diff options
author | Günther Deschner <gd@samba.org> | 2008-05-28 13:20:16 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-05-28 13:22:52 +0200 |
commit | 611072fc1cd94e6c9d56ce910fd13f007f6ecb84 (patch) | |
tree | bf09fa76bfc8f3f148777ed6fde08e89f21b1c78 /source3/include | |
parent | 87c15f5a57c4c7e35ac87fa1c90faeeac7c86250 (diff) | |
download | samba-611072fc1cd94e6c9d56ce910fd13f007f6ecb84.tar.gz samba-611072fc1cd94e6c9d56ce910fd13f007f6ecb84.tar.bz2 samba-611072fc1cd94e6c9d56ce910fd13f007f6ecb84.zip |
Fix Bug #5285. (libcap header mismatch)
Can someone with gpfs available test this ? The only codepath using this
function is the modules/gpfs.c module. The fix resolves at least the build
issues Samba has with recent kernel / libcap versions by using the portable
cap_get_proc()/cap_set_proc() interface (instead of using capget/capset).
Guenther
(This used to be commit 177955141247a4eb56ba0d82dc1add7f52175c40)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index e7860b7903..76cc389a10 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1709,7 +1709,8 @@ minimum length == 18. enum smbd_capability { KERNEL_OPLOCK_CAPABILITY, - DMAPI_ACCESS_CAPABILITY + DMAPI_ACCESS_CAPABILITY, + LEASE_CAPABILITY }; /* if a kernel does support oplocks then a structure of the following |