diff options
author | gramanas <anastasis.gramm2@gmail.com> | 2018-11-16 18:05:57 +0200 |
---|---|---|
committer | gramanas <anastasis.gramm2@gmail.com> | 2018-11-16 18:05:57 +0200 |
commit | 8eb4df24eb30353bea82268440396e50ed8b1bbc (patch) | |
tree | c885ab94952315f64bd596512cd23d0ef5509b3e /src/ck.c | |
parent | 2919a5e2c1d33d170bffc93dfeaa6292b9fa3dca (diff) | |
download | ck-8eb4df24eb30353bea82268440396e50ed8b1bbc.tar.gz ck-8eb4df24eb30353bea82268440396e50ed8b1bbc.tar.bz2 ck-8eb4df24eb30353bea82268440396e50ed8b1bbc.zip |
Fix bugs in test-ck and simplify clparser
Diffstat (limited to 'src/ck.c')
-rw-r--r-- | src/ck.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ int main(int argc, const char **argv) { /* Run action and print results */ switch(opt.action) { -#define X(ACTION) \ +#define X(ACTION, MIN, MAX) \ case CKA_##ACTION: \ rc = run_##ACTION(&opt, &conf); \ break; |