mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-02 07:51:09 +02:00
36302: attr: Fix compilation with libcap 2.24
This commit is contained in:
parent
d6ca3bc4b9
commit
9ca9a092de
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2015-08-28 Mikael Magnusson <mikachu@gmail.com>
|
||||||
|
|
||||||
|
* 36302: Src/Modules/attr.c: Fix compilation with libcap 2.24
|
||||||
|
|
||||||
2015-08-27 Daniel Shahaf <d.s@daniel.shahaf.name>
|
2015-08-27 Daniel Shahaf <d.s@daniel.shahaf.name>
|
||||||
|
|
||||||
* unposted: Completion/Unix/Command/_subversion: _subversion:
|
* unposted: Completion/Unix/Command/_subversion: _subversion:
|
||||||
|
|
|
@ -27,12 +27,12 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "attr.mdh"
|
|
||||||
#include "attr.pro"
|
|
||||||
|
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <sys/xattr.h>
|
#include <sys/xattr.h>
|
||||||
|
|
||||||
|
#include "attr.mdh"
|
||||||
|
#include "attr.pro"
|
||||||
|
|
||||||
static ssize_t
|
static ssize_t
|
||||||
xgetxattr(const char *path, const char *name, void *value, size_t size, int symlink)
|
xgetxattr(const char *path, const char *name, void *value, size_t size, int symlink)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue