Add 'not implemented' errors for unimplemented flags

These used to live in TODO but we got rid off them.  Make sure
we keep track of what we want to support by printing a message
when those flags are unimplemented.
This commit is contained in:
sin
2013-08-15 10:55:21 +01:00
parent 582511d57b
commit 83c2c3d1f5
7 changed files with 22 additions and 7 deletions

View File

@@ -17,7 +17,7 @@ struct crypt_ops sha1_ops = {
static void
usage(void)
{
eprintf("usage: %s [file...]\n", argv0);
eprintf("usage: %s [-c] [file...]\n", argv0);
}
int
@@ -27,6 +27,8 @@ main(int argc, char *argv[])
uint8_t md[SHA1_DIGEST_LENGTH];
ARGBEGIN {
case 'c':
eprintf("not implemented\n");
default:
usage();
} ARGEND;