From: Guus Sliepen Date: Wed, 17 Jul 2013 16:06:56 +0000 (+0200) Subject: Don't use vasprintf() anymore on Windows. X-Git-Tag: release-1.1pre8~27 X-Git-Url: https://www.tinc-vpn.org/git/browse?a=commitdiff_plain;h=182890814881be90e28ac5183039e25709766992;hp=182890814881be90e28ac5183039e25709766992;p=tinc 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. ---