diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2015-08-27 20:58:57 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2015-08-28 05:12:29 +0200 |
| commit | 9ca9a092deed209a2591c38c8fe1fe6c0debff7d (patch) | |
| tree | 862d153c1433a509f23c9de1b6a2a03c75e8bef3 | |
| parent | unposted: _subversion: Avoid SHORT_LOOPS (diff) | |
| download | zsh-9ca9a092deed209a2591c38c8fe1fe6c0debff7d.tar zsh-9ca9a092deed209a2591c38c8fe1fe6c0debff7d.tar.gz zsh-9ca9a092deed209a2591c38c8fe1fe6c0debff7d.tar.bz2 zsh-9ca9a092deed209a2591c38c8fe1fe6c0debff7d.tar.lz zsh-9ca9a092deed209a2591c38c8fe1fe6c0debff7d.tar.xz zsh-9ca9a092deed209a2591c38c8fe1fe6c0debff7d.tar.zst zsh-9ca9a092deed209a2591c38c8fe1fe6c0debff7d.zip | |
36302: attr: Fix compilation with libcap 2.24
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | Src/Modules/attr.c | 6 |
2 files changed, 7 insertions, 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> * unposted: Completion/Unix/Command/_subversion: _subversion: diff --git a/Src/Modules/attr.c b/Src/Modules/attr.c index 78c1104a9..f4bd04982 100644 --- a/Src/Modules/attr.c +++ b/Src/Modules/attr.c @@ -27,12 +27,12 @@ * */ -#include "attr.mdh" -#include "attr.pro" - #include <sys/types.h> #include <sys/xattr.h> +#include "attr.mdh" +#include "attr.pro" + static ssize_t xgetxattr(const char *path, const char *name, void *value, size_t size, int symlink) { |
