Commit 3be0e185 authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

Correct Win64 Servername Identification

PR: 47418
Submitted by: [Jorge Schrauwen <jorge.schrauwen gmail.com>]


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1104624 13f79535-47bb-0310-9956-ffa450edef68
parent 864ee471
Loading
Loading
Loading
Loading
+4 −0
Changes for os/win32/os.h: 4 added lines, 0 removed lines.
Original line number Diff line number Diff line
@@ -38,7 +38,11 @@
#include <io.h>
#include <fcntl.h>

#ifdef _WIN64
#define PLATFORM "Win64"
#else
#define PLATFORM "Win32"
#endif

/* Define command-line rewriting for this platform, handled by core.
 * For Windows, this is currently handled inside the WinNT MPM.