Report commit hash in usage message

This commit is contained in:
Chris Oei 2012-09-08 13:12:32 -07:00
parent 2519ab4e30
commit 319476532b
2 changed files with 5 additions and 1 deletions

1
main.c
View file

@ -44,6 +44,7 @@ usage(void)
"usage: scrypt-genpass [-l LEN] [-m MAXMEM] [-n] [-o MAXOPS] [-k KEYFILE] [-p PASS] <site>\n");
fprintf(stderr,
" scrypt-genpass -t\n");
fprintf(stderr, "Version: %s\n", SGVERSION);
exit(1);
}