diff options
-rw-r--r-- | usr/src/cmd/cmd-crypto/kmfcfg/kmfcfg.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr/src/cmd/cmd-crypto/kmfcfg/kmfcfg.c b/usr/src/cmd/cmd-crypto/kmfcfg/kmfcfg.c index bb7263b110..04b7c8ae2e 100644 --- a/usr/src/cmd/cmd-crypto/kmfcfg/kmfcfg.c +++ b/usr/src/cmd/cmd-crypto/kmfcfg/kmfcfg.c @@ -178,7 +178,7 @@ kc_help() int main(int argc, char *argv[]) { - KMF_RETURN ret; + int ret; int found; int i; @@ -220,6 +220,11 @@ main(int argc, char *argv[]) exit(1); } + /* + * Note the action functions can return values from + * the key management framework, and those values can conflict + * with the utility error codes. + */ ret = (*cmds[found].action)(argc, argv); switch (ret) { |