From: Guus Sliepen Date: Wed, 17 Jul 2013 16:08:58 +0000 (+0200) Subject: Don't use vasprintf() anymore on Windows. X-Git-Tag: release-1.0.22~3 X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=cfa738d3185980ff8532a35192a9113b0e9a937c;hp=cfa738d3185980ff8532a35192a9113b0e9a937c Don't use vasprintf() anymore on Windows. Windows doesn't actually support it, but MinGW provides it. However, with some versions of MinGW it doesn't work correctly. Instead, we vsnprintf() to a local buffer and xstrdup() the results. ---