summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2003-08-28 22:59:53 +0000
committerNathan Scott <nathans@sgi.com>2003-08-28 22:59:53 +0000
commitcb3f502e3a44a2225b0b3e8a3598de7f872a7266 (patch)
treecce796e2073e0d3f988b746b458dc17ea1c1e9d9
parentd0369347d419fead26ecb00af7e44d82872f633f (diff)
downloadattr-cb3f502e3a44a2225b0b3e8a3598de7f872a7266.tar.gz
attr/acl nftw error handling fix from AndreasG
-rw-r--r--VERSION2
-rw-r--r--debian/changelog4
-rw-r--r--doc/CHANGES5
-rw-r--r--getfattr/getfattr.c2
4 files changed, 8 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index 7073567..d8cc09c 100644
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
#
PKG_MAJOR=2
PKG_MINOR=4
-PKG_REVISION=9
+PKG_REVISION=10
PKG_BUILD=0
diff --git a/debian/changelog b/debian/changelog
index b0b97dd..bc75f0b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,8 @@
-attr (2.4.9-1) unstable; urgency=low
+attr (2.4.10-1) unstable; urgency=low
* New upstream release
- -- Nathan Scott <nathans@debian.org> Wed, 27 Aug 2003 15:27:47 +1000
+ -- Nathan Scott <nathans@debian.org> Fri, 29 Aug 2003 08:55:04 +1000
attr (2.4.8-1) unstable; urgency=low
diff --git a/doc/CHANGES b/doc/CHANGES
index 592030e..e379901 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,4 +1,7 @@
-attr-2.4.9 (04 August 2003)
+attr-2.4.10 (29 August 2003)
+ - Fix a bug in nftw worker routines' error handling code.
+
+attr-2.4.9 (27 August 2003)
- Fix issues in the libmisc quote routine (from Ben Escoto).
attr-2.4.8 (04 August 2003)
diff --git a/getfattr/getfattr.c b/getfattr/getfattr.c
index e8ed902..94d3653 100644
--- a/getfattr/getfattr.c
+++ b/getfattr/getfattr.c
@@ -349,7 +349,7 @@ int do_print(const char *path, const struct stat *stat,
{
int header_printed = 0;
- if (flag & FTW_DNR) {
+ if (flag == FTW_DNR) {
/* Item is a directory which can't be read. */
fprintf(stderr, "%s: %s: %s\n", progname, xquote(path),
strerror(errno));