summaryrefslogtreecommitdiff
path: root/misc/win32/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/win32/misc.c')
-rw-r--r--misc/win32/misc.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/misc/win32/misc.c b/misc/win32/misc.c
index f86746214..743580944 100644
--- a/misc/win32/misc.c
+++ b/misc/win32/misc.c
@@ -79,8 +79,16 @@ apr_status_t apr_get_oslevel(apr_oslevel_e *level)
else
apr_os_level = APR_WIN_2000_SP2;
}
+ else if (oslev.dwMinorVersion == 2) {
+ apr_os_level = APR_WIN_2003;
+ }
else {
- apr_os_level = APR_WIN_XP;
+ if (servpack < 1)
+ apr_os_level = APR_WIN_XP;
+ else if (servpack == 1)
+ apr_os_level = APR_WIN_XP_SP1;
+ else
+ apr_os_level = APR_WIN_XP_SP2;
}
}
else {