Nikolay Sivov : webservices: Actually use channel type in WsCreateServiceProxyFromTemplate() (Clang).

Alexandre Julliard julliard at wine.codeweavers.com
Mon May 16 10:36:44 CDT 2016


Module: wine
Branch: master
Commit: 8b5a9051bff83c6e8321920c8c43ca0e76ff6c50
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8b5a9051bff83c6e8321920c8c43ca0e76ff6c50

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Mon May 16 00:18:16 2016 +0300

webservices: Actually use channel type in WsCreateServiceProxyFromTemplate() (Clang).

Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
Signed-off-by: Hans Leidekker <hans at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/webservices/proxy.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/webservices/proxy.c b/dlls/webservices/proxy.c
index aceaf6b..cd90e36 100644
--- a/dlls/webservices/proxy.c
+++ b/dlls/webservices/proxy.c
@@ -172,7 +172,7 @@ HRESULT WINAPI WsCreateServiceProxyFromTemplate( WS_CHANNEL_TYPE channel_type,
         return E_NOTIMPL;
     }
 
-    if ((hr = create_channel( type, binding, channel_props, channel_props_count, &channel )) != S_OK)
+    if ((hr = create_channel( channel_type, binding, channel_props, channel_props_count, &channel )) != S_OK)
         return hr;
 
     if ((hr = create_proxy( channel, properties, count, handle )) != S_OK)




More information about the wine-cvs mailing list