diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/mkpasswd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/mkpasswd.c b/tools/mkpasswd.c index 0a5347c..73179b4 100644 --- a/tools/mkpasswd.c +++ b/tools/mkpasswd.c @@ -296,7 +296,7 @@ make_sha256_salt(int length) if (length > 16) { - printf("SHA256 salt length too long\n"); + printf("SHA-256 salt length too long\n"); exit(0); } @@ -337,7 +337,7 @@ make_sha512_salt(int length) if (length > 16) { - printf("SHA512 salt length too long\n"); + printf("SHA-512 salt length too long\n"); exit(0); } |