From: Samuli Seppänen Date: Thu, 14 Jul 2011 00:12:29 +0000 (-0700) Subject: Fixed a typo in win32.h that prevented building with Visual Studio X-Git-Tag: v2.3-alpha1~189 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9a13c7a0446fdd46ef834ad0de30a25cba89e74;p=thirdparty%2Fopenvpn.git Fixed a typo in win32.h that prevented building with Visual Studio Signed-off-by: Samuli Seppänen Tested-by: Samuli Seppänen Acked-by: Gert Doering Signed-off-by: David Sommerseth --- diff --git a/win32.h b/win32.h index ca6dd3277..528af6caa 100644 --- a/win32.h +++ b/win32.h @@ -272,7 +272,7 @@ char *get_win_sys_path (void); /* call self in a subprocess */ void fork_to_self (const char *cmdline); -#ifndef _MSV_VER +#ifndef _MSC_VER const char *inet_ntop(int af, const void *src, char *dst, socklen_t size); int inet_pton(int af, const char *src, void *st); #endif