Showing with 3 additions and 3 deletions.
  1. +1 −1 man/tpm2_load.1.md
  2. +1 −1 tools/tpm2_create.c
  3. +1 −1 tools/tpm2_unseal.c
2 changes: 1 addition & 1 deletion man/tpm2_load.1.md
Expand Up @@ -36,7 +36,7 @@ into the TPM.
* **-n**, **--name**=_NAME\_DATA\_FILE_:
An optional file to save the name structure of the object.

* **-C**, **--name**=_CONTEXT\_FILE_:
* **-C**, **--context**=_CONTEXT\_FILE_:
An optional file to save the object context to.

* **-S**, **--input-session-handle**=_SESSION\_HANDLE_:
Expand Down
2 changes: 1 addition & 1 deletion tools/tpm2_create.c
Expand Up @@ -350,7 +350,7 @@ bool tpm2_tool_onstart(tpm2_options **opts) {
{"objectAttributes",1,NULL,'A'},
{"inFile",1,NULL,'I'},
{"policy-file",1,NULL,'L'},
{"enforce-policy",1,NULL,'E'},
{"enforce-policy",0,NULL,'E'},
{"pubfile",1,NULL,'u'},
{"privfile",1,NULL,'r'},
{"contextParent",1,NULL,'c'},
Expand Down
2 changes: 1 addition & 1 deletion tools/tpm2_unseal.c
Expand Up @@ -196,7 +196,7 @@ bool tpm2_tool_onstart(tpm2_options **opts) {

static const struct option topts[] = {
{"item", required_argument, NULL, 'H'},
{"pwdi", required_argument, NULL, 'P'},
{"pwdk", required_argument, NULL, 'P'},
{"outfile", required_argument, NULL, 'o'},
{"itemContext", required_argument, NULL, 'c'},
{"input-session-handle", required_argument, NULL, 'S'},
Expand Down