You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by yl...@apache.org on 2022/01/07 14:18:02 UTC

svn commit: r1896808 - in /apr/apr/branches/1.7.x: ./ file_io/win32/readwrite.c

Author: ylavic
Date: Fri Jan  7 14:18:02 2022
New Revision: 1896808

URL: http://svn.apache.org/viewvc?rev=1896808&view=rev
Log:
Merge r1895178 from trunk:

Fix typo

Submitted by: mturk

Modified:
    apr/apr/branches/1.7.x/   (props changed)
    apr/apr/branches/1.7.x/file_io/win32/readwrite.c

Propchange: apr/apr/branches/1.7.x/
------------------------------------------------------------------------------
  Merged /apr/apr/trunk:r1895178

Modified: apr/apr/branches/1.7.x/file_io/win32/readwrite.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.7.x/file_io/win32/readwrite.c?rev=1896808&r1=1896807&r2=1896808&view=diff
==============================================================================
--- apr/apr/branches/1.7.x/file_io/win32/readwrite.c (original)
+++ apr/apr/branches/1.7.x/file_io/win32/readwrite.c Fri Jan  7 14:18:02 2022
@@ -322,7 +322,7 @@ APR_DECLARE(apr_status_t) apr_file_write
 
         wsaData.buf = (char*) buf;
         wsaData.len = (u_long)*nbytes;
-        if (WSASend((SOCKET)file->filehand, &wsaData, 1, &bwrote,
+        if (WSASend((SOCKET)thefile->filehand, &wsaData, 1, &bwrote,
                     flags, NULL, NULL) == SOCKET_ERROR) {
             rv = apr_get_netos_error();
             bwrote = 0;