You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by cygwinner <cy...@126.com> on 2007/11/09 10:21:21 UTC

apr bug submit

apr-1.2.11-win32-src.zip

apr/misc/win32/Misc.c

apr_status_t apr_get_oslevel(apr_oslevel_e *level)

49 line - 59 line:

            else if (oslev.dwMajorVersion == 3) {
                if (oslev.dwMajorVersion < 50) {
                    apr_os_level = APR_WIN_UNSUP;
                }
                else if (oslev.dwMajorVersion == 50) {
                    apr_os_level = APR_WIN_NT_3_5;
                }
                else {
                    apr_os_level = APR_WIN_NT_3_51;
                }
            }