summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2001-08-03 02:05:04 +0000
committerNathan Scott <nathans@sgi.com>2001-08-03 02:05:04 +0000
commit26bff66dc3f5d2e990d301edf47982cfcbdc25c7 (patch)
treea60975665ddcf06d9a3e9c707db405f627f8da49
parent9f95e203da466b846a687d65a7cf7d5699f66946 (diff)
downloadattr-26bff66dc3f5d2e990d301edf47982cfcbdc25c7.tar.gz
incorporate syscall fix for ppc from Juer Lee.
-rw-r--r--VERSION2
-rw-r--r--debian/changelog6
-rw-r--r--doc/CHANGES6
-rw-r--r--libattr/attr.c2
4 files changed, 14 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 37c8c15..02156d6 100644
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
#
PKG_MAJOR=1
PKG_MINOR=1
-PKG_REVISION=2
+PKG_REVISION=3
PKG_BUILD=0
diff --git a/debian/changelog b/debian/changelog
index 66c5a13..626e408 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+attr (1.1.3-0) unstable; urgency=low
+
+ * New release to fix system call issue on PowerPC
+
+ -- Nathan Scott <nathans@debian.org> Fri, 3 Aug 2001 11:06:55 +1000
+
attr (1.1.2-0) unstable; urgency=low
* New upstream release
diff --git a/doc/CHANGES b/doc/CHANGES
index d23faa0..819097a 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,3 +1,9 @@
+attr-1.1.3 (03 Aug 2001)
+ - bug fix from Juer Lee, syscall use on non-i386 was broken
+ - tested on PowerPC and i386; code is simpler and works
+ - install an additional library symlink for ld, so that the
+ shared lib is always found before the static lib at link time
+
attr-1.1.2 (27 Jul 2001)
- fixes for (hopefully) the last few nits in libtool usage
diff --git a/libattr/attr.c b/libattr/attr.c
index 0239c21..8a8e375 100644
--- a/libattr/attr.c
+++ b/libattr/attr.c
@@ -311,7 +311,7 @@ static int
attrctl(attr_obj_t obj, int type, attr_op_t *ops, int count)
{
#if HAVE_ACL_SYSCALL
- return syscall(SYS__attrctl, * (long *) &obj, type, ops, count);
+ return syscall(SYS__attrctl, obj, type, ops, count);
#else
errno = ENOSYS;
return -1;