Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Kasper committed Mar 15, 2018
1 parent 1f9a54e commit 7fc9eb1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
v0.12 (2018-03-13)
v0.12 (2018-03-15)
------------------
- Add TKTAuthRequireMultifactor and TKTAuthMultifactorURL.
These can be used to protect certain Directory/Location directives
with an additional login factor to achieve multifactor. Like the original
login, the multifactor method is left up to the ticket generation
application, only requiring a attestation that multifactor has been
application, only requiring an attestation that multifactor has been
supplied. (Contributed by Nick Ramser)

v0.11 (2017-02-28)
------------------
- Fixes selection of digest algorithm when using TKTAuthDigest.

v0.10 (2016-12-16)
Expand Down
4 changes: 2 additions & 2 deletions docs/install.html
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ <h4>Directives for use in directory/location/.htaccess scope</h4>
</li>
<li><strong><code>TKTAuthRequireMultifactor</code> (since v0.12)</strong>
<ul>
<li>If on, this directive will require the tickets "multifactor" field to be set to true.</li>
<li>If on, this directive will require the ticket's "multifactor" field to be set to 1.</li>
<li>Allows a specific directive to require additional authentication that may not be required globally.</li>
<li>Default: off</li>
</ul>
Expand Down Expand Up @@ -303,7 +303,7 @@ <h3><a name="ticket_format"></a>Ticket format</h3>
</li>
<li>multifactor (optional; since v0.12)
<ul>
<li>A int value(0/1) that denotes the current status of multifactor for a user</li>
<li>An int value (0/1) that denotes the current status of multifactor for a user</li>
<li>Defaults to 0 if this key is not present</li>
</ul>
</li>
Expand Down
4 changes: 2 additions & 2 deletions src/mod_auth_pubtkt.c
Original file line number Diff line number Diff line change
Expand Up @@ -357,10 +357,10 @@ static const command_rec auth_pubtkt_cmds[] =
OR_AUTHCFG, "debug level (1-3, higher for more debug output)"),
AP_INIT_FLAG("TKTAuthRequireMultifactor", ap_set_flag_slot,
(void *)APR_OFFSETOF(auth_pubtkt_dir_conf, require_multifactor),
OR_AUTHCFG, "whether to require an mulitfactor login flag in the ticket"),
OR_AUTHCFG, "whether to require a mulitfactor login flag in the ticket"),
AP_INIT_TAKE1("TKTAuthMultifactorURL", ap_set_string_slot,
(void *)APR_OFFSETOF(auth_pubtkt_dir_conf, multifactor_url),
OR_AUTHCFG, "URL to redirect to if multifactor is required by not present in the ticket"),
OR_AUTHCFG, "URL to redirect to if multifactor is required but not present in the ticket"),
{NULL},
};

Expand Down

0 comments on commit 7fc9eb1

Please sign in to comment.