Hi, The patch is mangled by mailer (added linebreaks etc.). Could you please resend using git send-email? While at it, one thing I noticed:
On Thu, Dec 10, 2015 at 6:48 PM, Fish Wang <fish.t...@gmail.com> wrote: > -#if _WIN32_WINNT >= 0x0600 > else if (streq (p[0], "block-outside-dns") && !p[1]) > { > VERIFY_PERMISSION (OPT_P_IPWIN32); > - options->block_outside_dns = true; > + if (win_wfp_init_funcs()) > + { > + options->block_outside_dns = true; > + } > + else > + { > + msg (msglevel, "Failed to enable --block-outside-dns. " > + "Maybe WFP is not supported on your system?"); > I believe msglevel_fc is more appropriate, as otherwise forward compatible and "setenv opt" usages will not be respected. Selva