You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rp...@apache.org on 2008/01/30 21:50:43 UTC

svn commit: r616895 - in /apr/apr/trunk: CHANGES file_io/win32/open.c

Author: rpluem
Date: Wed Jan 30 12:50:40 2008
New Revision: 616895

URL: http://svn.apache.org/viewvc?rev=616895&view=rev
Log:
* Add missing semi-colon in Win9x code path of apr_file_open that breaks
  Win9X Debug builds.

PR: 44329
Submitted by: Curt Arnold <carnold apache.org>
Reviewed by: rpluem

Modified:
    apr/apr/trunk/CHANGES
    apr/apr/trunk/file_io/win32/open.c

Modified: apr/apr/trunk/CHANGES
URL: http://svn.apache.org/viewvc/apr/apr/trunk/CHANGES?rev=616895&r1=616894&r2=616895&view=diff
==============================================================================
--- apr/apr/trunk/CHANGES [utf-8] (original)
+++ apr/apr/trunk/CHANGES [utf-8] Wed Jan 30 12:50:40 2008
@@ -1,6 +1,9 @@
                                                      -*- coding: utf-8 -*-
 Changes for APR 1.3.0
 
+  *) Add missing semi-colon in Win9x code path of apr_file_open that breaks
+     Win9X Debug builds. PR 44329. [Curt Arnold]
+
   *) z/OS: return standard apr_status_t codes from apr_dso_load()
      and apr_dso_sym().  [David Jones <oscaremma gmail.com>]
 

Modified: apr/apr/trunk/file_io/win32/open.c
URL: http://svn.apache.org/viewvc/apr/apr/trunk/file_io/win32/open.c?rev=616895&r1=616894&r2=616895&view=diff
==============================================================================
--- apr/apr/trunk/file_io/win32/open.c (original)
+++ apr/apr/trunk/file_io/win32/open.c Wed Jan 30 12:50:40 2008
@@ -424,7 +424,7 @@
         handle = CreateFileA(fname, oflags, sharemode,
                              NULL, createflags, attributes, 0);
         /* This feature is not supported on this platform. */
-        flag &= ~APR_SENDFILE_ENABLED
+        flag &= ~APR_SENDFILE_ENABLED;
     }
 #endif
     if (handle == INVALID_HANDLE_VALUE) {