Index: ossp-pkg/uuid/ChangeLog RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v rcsdiff -q -kk '-r1.37' '-r1.38' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/ChangeLog,v' 2>/dev/null --- ChangeLog 2004/02/11 14:53:00 1.37 +++ ChangeLog 2004/02/13 14:29:32 1.38 @@ -11,7 +11,10 @@ This is a list of all changes to OSSP uuid. For a more brief summary please have a look at the NEWS file. - Changes between 0.9.5 and 0.9.6 (06-Feb-2004 to 11-Feb-2004) + Changes between 0.9.5 and 0.9.6 (06-Feb-2004 to 13-Feb-2004) + + o Fixed "uuid -h" command. + [Ralf S. Engelschall, ] o Added an experimental additional DCE 1.1 API for backward compatibility with existing applications. Index: ossp-pkg/uuid/uuid_cli.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_cli.c,v rcsdiff -q -kk '-r1.14' '-r1.15' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_cli.c,v' 2>/dev/null --- uuid_cli.c 2004/01/19 14:11:50 1.14 +++ uuid_cli.c 2004/02/13 14:29:32 1.15 @@ -62,7 +62,8 @@ vfprintf(stderr, str, ap); fprintf(stderr, "\n"); } - fprintf(stderr, "usage: uuid [-1] [-n count] [-a] [-d] [-o filename] [UUID]\n"); + fprintf(stderr, "usage: uuid [-v version] [-m] [-n count] [-1] [-r] [-o filename] [namespace-name]\n"); + fprintf(stderr, "usage: uuid -d [-r] [-o filename] [uuid]\n"); va_end(ap); exit(1); } @@ -92,7 +93,7 @@ raw = 0; /* default is ASCII output */ decode = 0; /* default is to encode */ version = UUID_MAKE_V1; - while ((ch = getopt(argc, argv, "1n:rdmo:v:")) != -1) { + while ((ch = getopt(argc, argv, "1n:rdmo:v:h")) != -1) { switch (ch) { case '1': iterate = 1; @@ -132,6 +133,9 @@ break; } break; + case 'h': + usage(NULL); + break; default: usage("invalid option '%c'", optopt); } Index: ossp-pkg/uuid/uuid_cli.pod RCS File: /v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_cli.pod,v rcsdiff -q -kk '-r1.13' '-r1.14' -u '/v/ossp/cvs/ossp-pkg/uuid/Attic/uuid_cli.pod,v' 2>/dev/null --- uuid_cli.pod 2004/01/19 14:11:50 1.13 +++ uuid_cli.pod 2004/02/13 14:29:32 1.14 @@ -52,7 +52,7 @@ B<-d> [B<-r>] [B<-o> I] -[I] +I =head1 DESCRIPTION