Skip to content

Commit 8d84fe5

Browse files
committed
Fixed some spelling errors
1 parent a0aff83 commit 8d84fe5

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@
256256
pkcs11_login-0.4 released:
257257
- Now pam_pkcs11 can take arguments from command line
258258
or via configuration file
259-
- Certificate to User mappin has been modularized
259+
- Certificate to User mapping has been modularized
260260
- Preliminary works on entering session without userlogin prompt:
261261
just insert certificate and enter PIN
262262

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
pkcs11_login-0.4 released:
8282
- Now pam_pkcs11 can take arguments from command line
8383
or via configuration file
84-
- Certificate to User mappin has been modularized
84+
- Certificate to User mapping has been modularized
8585
- Preliminary works on entering session without userlogin prompt:
8686
just insert certificate and enter PIN
8787

doc/mappers_api.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ The returned "<option>key</option>" and "<option>value</option>" entries should
762762
<application>PAM-PKCS#11</application> configuration files are based in the SCConf library of the <application>OpenSC</application> Project. See the file <filename>src/scconf/README.scconf</filename> for a detailed description of the <application>scconf</application>
763763
</para>
764764
<para>
765-
As a resume, below are shown the most relevants scconf API functions for the mapper programmer:
765+
As a resume, below are shown the most relevant scconf API functions for the mapper programmer:
766766
<itemizedlist>
767767
<listitem><function>const char *scconf_get_str(const scconf_block * block, const char *option, const char *default); </function> To retrieve the string value assigned to keyword <option>option</option> or return <option>default</option> if keyword not found</listitem>
768768
<listitem><function>int scconf_get_int(const scconf_block * block, const char *option, int default); </function> To retrieve the integer value assigned to keyword <option>option</option> or return <option>default</option> if keyword not found</listitem>

doc/pam_pkcs11.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ Cryptographic Token Interface Standard</ulink>.
145145

146146
<para>
147147
<application>Pam-pkcs11</application> is a PAM (Pluggable Authentication
148-
Module) pluggin to allow logging into a UNIX/Linux System that supports
148+
Module) plugin to allow logging into a UNIX/Linux System that supports
149149
PAM by mean of use Digital Certificates stored in a smart card.
150150
</para>
151151

src/pam_pkcs11/mapper_mgr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ struct mapper_listitem *load_mappers( scconf_context *ctx ) {
170170
DBG("No pam_pkcs11 block in config file");
171171
return NULL;
172172
}
173-
DBG("Retrieveing mapper module list");
173+
DBG("Retrieving mapper module list...");
174174
root = scconf_find_block(ctx, NULL, "pam_pkcs11");
175175
if (!root) {
176176
/* should not occurs, but Murphy says.. */

src/tools/pkcs11_eventmgr.c

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -652,15 +652,16 @@ int main(int argc, char *argv[])
652652
* We only stop in case of an error
653653
*
654654
* COMMENT:
655-
* There are no way in pkcs11 API to detect if a card is present or no
656-
* so the way we proced is to look for an slot whit available token
655+
* There are no way in pkcs11 API to detect if a card is present or
656+
* no so the way we proceed is to look for a slot whith available
657+
* token.
657658
* Any ideas will be wellcomed
658659
*
659660
* REVIEW:
660-
* Errrh, well, above note is not exactly true: pkcs11v2.1 API defines
661-
* C_WaitForSlotEvent(). But it's known that is not supported in all
662-
* pkcs11 implementations, and seems to be buggy in multithreaded
663-
* environments....
661+
* Errrh, well, above note is not exactly true: pkcs11v2.1 API
662+
* defines C_WaitForSlotEvent(). But it's known that is not
663+
* supported in all PKCS11 implementations, and seems to be buggy
664+
* in multithreaded environments....
664665
*/
665666
do
666667
{

0 commit comments

Comments
 (0)