Author: akhaldi
Date: Sun Oct 30 17:19:18 2016
New Revision: 73080
URL: http://svn.reactos.org/svn/reactos?rev=73080&view=rev
Log:
[0.4.3] * Merge rpcrt4 noisy fixme removal by Pierre in r73075.
Modified:
branches/ros-branch-0_4_3/ (props changed)
branches/ros-branch-0_4_3/reactos/ (props changed)
branches/ros-branch-0_4_3/reactos/dll/win32/rpcrt4/rpc_transport.c
Propchange: branches/ros-branch-0_4_3/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Oct 30 17:19:18 2016
@@ -1 +1 @@
-/trunk:73043,73077
+/trunk:73043,73075,73077
Propchange: branches/ros-branch-0_4_3/reactos/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Oct 30 17:19:18 2016
@@ -21,4 +21,4 @@
/branches/usb-bringup:51335,51337,51341-51343,51348,51350,51353,51355,51365-51369,51372,51384-54388,54396-54398,54736-54737,54752-54754,54756-54760,54762,54764-54765,54767-54768,54772,54774-54777,54781,54787,54790-54792,54797-54798,54806,54808,54834-54838,54843,54850,54852,54856,54858-54859
/branches/usb-bringup-trunk:55019-55543,55548-55554,55556-55567
/branches/wlan-bringup:54809-54998
-/trunk/reactos:73043,73077
+/trunk/reactos:73043,73075,73077
Modified: branches/ros-branch-0_4_3/reactos/dll/win32/rpcrt4/rpc_transport.c
URL: http://svn.reactos.org/svn/reactos/branches/ros-branch-0_4_3/reactos/dll/wi…
==============================================================================
--- branches/ros-branch-0_4_3/reactos/dll/win32/rpcrt4/rpc_transport.c [iso-8859-1] (original)
+++ branches/ros-branch-0_4_3/reactos/dll/win32/rpcrt4/rpc_transport.c [iso-8859-1] Sun Oct 30 17:19:18 2016
@@ -458,7 +458,6 @@
/* Store the local computer name as the NetworkAddr for ncacn_np as long as
* we don't support named pipes over the network. */
- FIXME("Using local computer name as NetworkAddr\n");
new_conn->NetworkAddr = HeapAlloc(GetProcessHeap(), 0, len);
if (!GetComputerNameA(new_conn->NetworkAddr, &len))
{
Author: hbelusca
Date: Sun Oct 30 14:14:27 2016
New Revision: 73078
URL: http://svn.reactos.org/svn/reactos?rev=73078&view=rev
Log:
[BTRFS]: Fix compilation with MSVC too, as we don't have the 'FileFsSectorSizeInformation' FS information class in our headers (this is some Win8+ stuff).
CORE-12223 #comment MSVC compilation fixed in r73078 ('FileFsSectorSizeInformation' absent in our headers).
Modified:
trunk/reactos/drivers/filesystems/btrfs/btrfs.c
Modified: trunk/reactos/drivers/filesystems/btrfs/btrfs.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/btrfs/…
==============================================================================
--- trunk/reactos/drivers/filesystems/btrfs/btrfs.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/btrfs/btrfs.c [iso-8859-1] Sun Oct 30 14:14:27 2016
@@ -716,7 +716,8 @@
Status = overflow ? STATUS_BUFFER_OVERFLOW : STATUS_SUCCESS;
break;
}
-
+
+#ifndef __REACTOS__
#ifdef _MSC_VER // not in mingw yet
case FileFsSectorSizeInformation:
{
@@ -739,6 +740,7 @@
break;
}
#endif
+#endif /* __REACTOS__ */
default:
Status = STATUS_INVALID_PARAMETER;
Author: pschweitzer
Date: Sun Oct 30 09:17:42 2016
New Revision: 73075
URL: http://svn.reactos.org/svn/reactos?rev=73075&view=rev
Log:
[RPCRT4]
Import Wine commit (by Alexandre Julliard):
- 7b0c2cdbcd64cffa2f5c5a37f55799b114132b59, Remove noisy fixme.
Modified:
trunk/reactos/dll/win32/rpcrt4/rpc_transport.c
Modified: trunk/reactos/dll/win32/rpcrt4/rpc_transport.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/rpcrt4/rpc_trans…
==============================================================================
--- trunk/reactos/dll/win32/rpcrt4/rpc_transport.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/rpcrt4/rpc_transport.c [iso-8859-1] Sun Oct 30 09:17:42 2016
@@ -458,7 +458,6 @@
/* Store the local computer name as the NetworkAddr for ncacn_np as long as
* we don't support named pipes over the network. */
- FIXME("Using local computer name as NetworkAddr\n");
new_conn->NetworkAddr = HeapAlloc(GetProcessHeap(), 0, len);
if (!GetComputerNameA(new_conn->NetworkAddr, &len))
{