diff options
author | sam <sam@FreeBSD.org> | 2003-03-24 17:36:50 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2003-03-24 17:36:50 +0000 |
commit | 69c11fdb01fd0a04d907aabe0c829227dda9d74f (patch) | |
tree | 4b9987f42eacefeac664755261c12864915853cb /tools | |
parent | ed068996dc6582fa26cfd1a61863ff5400eb6de2 (diff) | |
download | FreeBSD-src-69c11fdb01fd0a04d907aabe0c829227dda9d74f.zip FreeBSD-src-69c11fdb01fd0a04d907aabe0c829227dda9d74f.tar.gz |
add missing %u to show mcr1full count
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/crypto/ubsecstats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tools/crypto/ubsecstats.c b/tools/tools/crypto/ubsecstats.c index 762f687..ebf7c52 100644 --- a/tools/tools/crypto/ubsecstats.c +++ b/tools/tools/crypto/ubsecstats.c @@ -59,7 +59,7 @@ main(int argc, char *argv[]) stats.hst_noload, stats.hst_nomcl); printf("totbatch %u maxbatch %u\n", stats.hst_totbatch, stats.hst_maxbatch); - printf("maxqueue %u maxqchip %u mcr1full\n", + printf("maxqueue %u maxqchip %u mcr1full %u\n", stats.hst_maxqueue, stats.hst_maxqchip, stats.hst_mcr1full); printf("rng %u modexp %u moexpcrt %u\n", stats.hst_rng, stats.hst_modexp, stats.hst_modexpcrt); |