{
char *p = vpninfo->cookie;
- /* We currently expect the "cookie" to be contain multiple cookies:
+ /* We currently expect the "cookie" to contain multiple cookies:
* DSSignInUrl=/; DSID=xxx; DSFirstAccess=xxx; DSLastAccess=xxx
* Process those into vpninfo->cookies unless we already had them
- * (in which case they'll may be newer. */
+ * (in which case they may be newer). */
while (p && *p) {
char *semicolon = strchr(p, ';');
char *equals;
} else if (!xmlnode_get_val(xml_node, "connected-gw-ip", &s)) {
if (vpninfo->ip_info.gateway_addr && strcmp(s, vpninfo->ip_info.gateway_addr))
vpn_progress(vpninfo, PRG_DEBUG, _("Config XML <connected-gw-ip> address (%s) differs from external\n"
- "gateway address (%s). Please report any this to\n"
+ "gateway address (%s). Please report this to\n"
"<openconnect-devel@lists.infradead.org>, including any problems\n"
"with ESP or other apparent loss of connectivity or performance.\n"),
s, vpninfo->ip_info.gateway_addr);