aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2003-02-24 22:52:36 +0000
committerSam Leffler <sam@FreeBSD.org>2003-02-24 22:52:36 +0000
commit5db65949666a99d811146be31e0c0322cd13a5f9 (patch)
treebdf1fd8c2e0d8f20c93af05f0ba23b5e52bbf3a5 /tools
parent0ec74a96690eb21ecc4d18f658e19f58ccfe5f47 (diff)
Notes
Diffstat (limited to 'tools')
-rw-r--r--tools/tools/README1
-rw-r--r--tools/tools/crypto/cryptotest.c4
2 files changed, 5 insertions, 0 deletions
diff --git a/tools/tools/README b/tools/tools/README
index 875e3ef26641..3a88e7db4aff 100644
--- a/tools/tools/README
+++ b/tools/tools/README
@@ -9,6 +9,7 @@ Please make a subdir per program, and add a brief description to this file.
commitsdb A tool for reconstructing commit history using md5
checksums of the commit logs.
+crypto Exercise the crypto framework through /dev/crypto
editing Editor modes and the like to help editing FreeBSD code.
epfe Extract printing filter examples from printing.sgml.
html-mv Rename HTML generated filenames to human readable filenames.
diff --git a/tools/tools/crypto/cryptotest.c b/tools/tools/crypto/cryptotest.c
index 7f1f951f3355..ef5d51ece69a 100644
--- a/tools/tools/crypto/cryptotest.c
+++ b/tools/tools/crypto/cryptotest.c
@@ -355,7 +355,11 @@ main(int argc, char **argv)
profile = 1;
break;
case 'b':
+#ifdef COP_F_BATCH
opflags |= COP_F_BATCH;
+#else
+ printf("Sorry, batching control never got MFC'd!\n");
+#endif
break;
default:
usage(argv[0]);