X-Git-Url: https://jxself.org/git/?p=skeinsum.git;a=blobdiff_plain;f=skein_cli.c;h=bb8235483aa91b11309102a1b26055d34436ed3e;hp=73ae69ecb50fb7bfffd608434c21198de94b77d7;hb=26d0bdbce9858247b4c40cb7c546c8ba08941fd0;hpb=3d84e59fdea18eb07bfd22d3ad9332f325090e5b diff --git a/skein_cli.c b/skein_cli.c index 73ae69e..bb82354 100644 --- a/skein_cli.c +++ b/skein_cli.c @@ -29,7 +29,7 @@ along with skeinsum. If not, see . #include #include #include -#include "SHA3api_ref.h" +#include "skeinapi_ref.h" #define WARN(msg, ...) fprintf(stderr, "skein%dsum: " msg, hashbitlen, ##__VA_ARGS__) @@ -387,6 +387,7 @@ void print_version(void) void print_usage(void) { + printf("Usage: skein%dsum [OPTION]... [FILE]...\n",hashbitlen); printf("Print or check skein (%d-bit) checksums.\n",hashbitlen); printf("With no FILE, or when FILE is -, read standard input.\n" @@ -411,6 +412,8 @@ void print_usage(void) "this program. The default mode is to print a line with checksum, a\n" "character indicating input mode ('*' for binary, space for text), and\n" "name for each FILE.\n", skeinVersion); + printf("%s home page: %s\n", PACKAGE_NAME, PACKAGE_URL); + printf("Report bugs to: %s\n", PACKAGE_BUGREPORT); exit(1); }