Add home page and email address to help output
authorJason Self <j@jxself.org>
Sun, 24 Feb 2019 19:25:04 +0000 (11:25 -0800)
committerJason Self <j@jxself.org>
Sun, 24 Feb 2019 19:25:04 +0000 (11:25 -0800)
For bug reporting purposes.

skein_cli.c

index 73ae69ecb50fb7bfffd608434c21198de94b77d7..34c2a6ac77b38bdcfd634dafcd1173cb76e9bb7a 100644 (file)
@@ -387,6 +387,7 @@ void print_version(void)
 
 void print_usage(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"
        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);
               "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);
 }
 
        exit(1);
 }