Skip to content

Commit

Permalink
Merge branch 'one_more_pulse_failcode' into 'master'
Browse files Browse the repository at this point in the history
Pulse: one more known failcode (0x0e = client cert required)

See merge request openconnect/openconnect!163
  • Loading branch information
dlenski committed Feb 3, 2021
2 parents f07d798 + 4261aed commit 99bd568
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 99bd568

Please sign in to comment.