Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Pulse: one more known failcode (0x0e = client cert required)
Verified by connecting to a Pulse server which requires a client cert,
without providing one via -c/-k.

Signed-off-by: Daniel Lenski <dlenski@gmail.com>
  • Loading branch information
dlenski committed Jan 25, 2021
1 parent f07d798 commit 4261aed
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pulse.c
Expand Up @@ -1710,6 +1710,9 @@ static int pulse_authenticate(struct openconnect_info *vpninfo, int connecting)
if (failcode == 0x0d) {
vpn_progress(vpninfo, PRG_ERR,
_("Authentication failure: Account locked out\n"));
} else if (failcode == 0x0e) {
vpn_progress(vpninfo, PRG_ERR,
_("Authentication failure: Client certificate required\n"));
} else {
vpn_progress(vpninfo, PRG_ERR,
_("Authentication failure: Code 0x%02x\n"),
Expand Down

0 comments on commit 4261aed

Please sign in to comment.