Skip to content

Commit 2bc51f9

Browse files
srajivRajiv Andrade
authored andcommitted
Typos fixed.
Signed-off-by: Rajiv Andrade <srajiv@linux.vnet.ibm.com>
1 parent f6133bd commit 2bc51f9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

‎README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
BUILDING tpm-tools
4545
-------- ---------
46-
$ sh ./bootstap.sh
46+
$ sh ./bootstrap.sh
4747
$ ./configure
4848
$ make
4949
# make install

‎man/man8/tpm_setactive.8

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ tpm_setactive \- change TPM active states
3232
.SH "DESCRIPTION"
3333
.PP
3434
\fBtpm_setactive\fR reports the status of the TPM's flags regarding the active state of the TPM. This is the default behavior and also accessible via the \fB\-\-status\fR option. Requesting a report of this status prompts for the owner password. The \fB\-\-active\fR option changes the TPM to the active state
35-
(via the TPM_PhysicalSetDeactivated API). This operation requires evidence of physical presence, is persistent and requires a reboot to take affect. The \fB\-\-inactive\fR
36-
option (via the TPM_PhysicalSetDeactivated API) changes the TPM to the inactive state. This operation requires evidence of physical presence, is persistent and requires a reboot to take affect. An inactive TPM is essentially off but still allows for a tpm_takeownership to occur. The \fB\-\-temp\fR option causes deactivation (via the TPM_SetTempDeactivated API) to happen immediately but only endure for the current boot cycle. The \fB\-\-status\fR, \fB\-\-active\fR, \fB\-\-inactive\fR, and \fB\-\-temp\fR options are mutually exclusive and the last one on the command line will be carried out.
35+
(via the TPM_PhysicalSetDeactivated API). This operation requires evidence of physical presence, is persistent and requires a reboot to take effect. The \fB\-\-inactive\fR
36+
option (via the TPM_PhysicalSetDeactivated API) changes the TPM to the inactive state. This operation requires evidence of physical presence, is persistent and requires a reboot to take effect. An inactive TPM is essentially off but still allows for a tpm_takeownership to occur. The \fB\-\-temp\fR option causes deactivation (via the TPM_SetTempDeactivated API) to happen immediately but only endure for the current boot cycle. The \fB\-\-status\fR, \fB\-\-active\fR, \fB\-\-inactive\fR, and \fB\-\-temp\fR options are mutually exclusive and the last one on the command line will be carried out.
3737

3838
.TP
3939
\fB\-h\fR, \fB\-\-help\fR
@@ -52,10 +52,10 @@ Use TSS UNICODE encoding for passwords to comply with applications using TSS pop
5252
Report the status of flags regarding the TPM active states.
5353
.TP
5454
\fB-a\fR, \fB\-\-active\fR
55-
Make the TPM active. Operation is persistent, requires phyiscal presence to authorize, and a reboot to take affect.
55+
Make the TPM active. Operation is persistent, requires phyiscal presence to authorize, and a reboot to take effect.
5656
.TP
5757
\fB-i\fR, \fB\-\-inactive\fR
58-
Make the TPM inactive. Operation is persistent, requires phyiscal presence to authorize, and a reboot to take affect.
58+
Make the TPM inactive. Operation is persistent, requires phyiscal presence to authorize, and a reboot to take effect.
5959
.TP
6060
\fB-t\fR, \fB\-\-temp\fR
6161
Makes the TPM inactive for the current boot cycle only.

‎src/tpm_mgmt/tpm_activate.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,12 +152,12 @@ int main(int argc, char **argv)
152152
case ACTIVATE:
153153
if (tpmSetStatus(hTpm, TSS_TPMSTATUS_PHYSICALSETDEACTIVATED, FALSE) != TSS_SUCCESS)
154154
goto out_close;
155-
logMsg(_("Action requires a reboot to take affect\n"));
155+
logMsg(_("Action requires a reboot to take effect\n"));
156156
break;
157157
case DEACTIVATE:
158158
if (tpmSetStatus(hTpm, TSS_TPMSTATUS_PHYSICALSETDEACTIVATED, TRUE) != TSS_SUCCESS)
159159
goto out_close;
160-
logMsg(_("Action requires a reboot to take affect\n"));
160+
logMsg(_("Action requires a reboot to take effect\n"));
161161
break;
162162
case TEMP_DEACTIVATE:
163163
if (tpmSetStatus(hTpm, TSS_TPMSTATUS_SETTEMPDEACTIVATED, TRUE) != TSS_SUCCESS)

0 commit comments

Comments
 (0)