summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION2
-rw-r--r--debian/changelog6
-rw-r--r--doc/CHANGES4
-rw-r--r--setfattr/setfattr.c9
4 files changed, 17 insertions, 4 deletions
diff --git a/VERSION b/VERSION
index 3bbf3d1..af9a07c 100644
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
#
PKG_MAJOR=2
PKG_MINOR=4
-PKG_REVISION=16
+PKG_REVISION=17
PKG_BUILD=1
diff --git a/debian/changelog b/debian/changelog
index 29160ec..6b4120c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+attr (2.4.17-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Nathan Scott <nathans@debian.org> Fri, 10 Sep 2004 10:51:19 +1000
+
attr (2.4.16-1) unstable; urgency=low
* New upstream release
diff --git a/doc/CHANGES b/doc/CHANGES
index f92e50e..2560054 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,3 +1,7 @@
+attr-2.4.17 (8 September 2004)
+ - Clarify setfattr usage information.
+ - Fix email address in manual pages.
+
attr-2.4.16 (21 April 2004)
- Updated Debian packaging dependency information.
diff --git a/setfattr/setfattr.c b/setfattr/setfattr.c
index 157c651..6d22628 100644
--- a/setfattr/setfattr.c
+++ b/setfattr/setfattr.c
@@ -33,7 +33,8 @@
#include "misc.h"
#define CMD_LINE_OPTIONS "n:x:v:h"
-#define CMD_LINE_SPEC "{-n name|-x name} [-v value] [-h] file..."
+#define CMD_LINE_SPEC1 "{-n name} [-v value] [-h] file..."
+#define CMD_LINE_SPEC2 "{-x name} [-h] file..."
struct option long_options[] = {
{ "name", 1, 0, 'n' },
@@ -164,7 +165,8 @@ cleanup:
void help(void)
{
printf(_("%s %s -- set extended attributes\n"), progname, VERSION);
- printf(_("Usage: %s %s\n"), progname, CMD_LINE_SPEC);
+ printf(_("Usage: %s %s\n"), progname, CMD_LINE_SPEC1);
+ printf(_(" %s %s\n"), progname, CMD_LINE_SPEC2);
printf(_(
" -n, --name=name set the value of the named extended attribute\n"
" -x, --remove=name remove the named extended attribute\n"
@@ -257,8 +259,9 @@ int main(int argc, char *argv[])
synopsis:
fprintf(stderr, _("Usage: %s %s\n"
+ " %s %s\n"
"Try `%s --help' for more information.\n"),
- progname, CMD_LINE_SPEC, progname);
+ progname, CMD_LINE_SPEC1, progname, CMD_LINE_SPEC2, progname);
return 2;
}