summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2012-10-13 15:26:12 +0100
committerLars Wirzenius <liw@liw.fi>2012-10-13 15:26:12 +0100
commitfb9a81e98b0d3d4262562a45cbcfce60913566f4 (patch)
treec0456ad26a25f10c355ce841fcea6a9e3da619bc
parent5937b5d20ed671c8f5172e93ff5aecb158039b4c (diff)
downloadsummain-fb9a81e98b0d3d4262562a45cbcfce60913566f4.tar.gz
Use sys/xattr.h instead of attr/xattr.h
-rw-r--r--NEWS5
-rw-r--r--_summainmodule.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 01168a1..42f1a0d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,11 @@
NEWS file for summain
=====================
+Version X.Y, released UNRELEASED
+---------------------------------
+
+* Changed to use the libc-provided xattr library, instead of the external
+ one. Thanks, Игорь Пашев for pointing this out.
Version 0.16, released 2012-09-29
---------------------------------
diff --git a/_summainmodule.c b/_summainmodule.c
index 4184ef0..069dafe 100644
--- a/_summainmodule.c
+++ b/_summainmodule.c
@@ -31,7 +31,7 @@
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
-#include <attr/xattr.h>
+#include <sys/xattr.h>
#include <unistd.h>
#include <stdlib.h>