Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
$CISCO_SPLIT_DNS is separated by commas in vpnc, not spaces
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
  • Loading branch information
David Woodhouse authored and David Woodhouse committed Jun 13, 2012
1 parent 8bf9a24 commit 614424f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tun.c
Expand Up @@ -330,7 +330,7 @@ static void set_script_env(struct openconnect_info *vpninfo)
dns = dns->next;
if (!dns)
break;
*(p++) = ' ';
*(p++) = ',';
}
setenv("CISCO_SPLIT_DNS", list, 1);
free(list);
Expand Down

0 comments on commit 614424f

Please sign in to comment.