summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION2
-rw-r--r--debian/changelog6
-rw-r--r--doc/CHANGES3
-rw-r--r--libattr/attr.c2
4 files changed, 11 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 02156d6..0422c97 100644
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
#
PKG_MAJOR=1
PKG_MINOR=1
-PKG_REVISION=3
+PKG_REVISION=4
PKG_BUILD=0
diff --git a/debian/changelog b/debian/changelog
index 626e408..e607335 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+attr (1.1.4-1) unstable; urgency=low
+
+ * Bug fix in attr_multi(3), use of "count" parameter was broken
+
+ -- Nathan Scott <nathans@debian.org> Fri, 11 Jan 2002 08:43:58 +1100
+
attr (1.1.3-0) unstable; urgency=low
* New release to fix system call issue on PowerPC
diff --git a/doc/CHANGES b/doc/CHANGES
index 819097a..5a5e060 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,3 +1,6 @@
+attr-1.1.4 (11 Jan 2002)
+ - bug fix in attr_multi(3), use of "count" was broken
+
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
diff --git a/libattr/attr.c b/libattr/attr.c
index 8a8e375..f076b67 100644
--- a/libattr/attr.c
+++ b/libattr/attr.c
@@ -271,7 +271,7 @@ _attr_multif(attr_obj_t obj, int type, attr_multiop_t *multiops, int count,
ops[i].flags = multiops[i].am_flags;
}
- if (attrctl(obj, type, ops, 1) < 0) {
+ if (attrctl(obj, type, ops, count) < 0) {
error = -1;
goto free_mem;
}