diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-03-09 20:06:35 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-03-09 20:06:35 +0000 |
commit | 8eb76aad24d5cdfb531e605f30054ef368a4c653 (patch) | |
tree | 7322795afa6e044155eaeee5c2cf9737cfe64ac0 /tools | |
parent | 4ce2d7eb811674c76f9d35c41493cb6045851ae6 (diff) |
- mkpasswd.c: cosmetical fixes
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@3124 82007160-df01-0410-b94d-b575c5fd34c7
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); } |