summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAnas Nashif <nashif@intel.com>2007-05-04 22:28:38 +0000
committerAnas Nashif <nashif@intel.com>2007-05-04 22:28:38 +0000
commit23a0079658f810c7d18b7a05fbf210d74cee2b13 (patch)
treefecdc35caa5afec7dd1ba6c46809196d97b15b08 /tests
parent96c514f19dc504afeafef715447b5e27c00b1ead (diff)
downloadwsmancli-23a0079658f810c7d18b7a05fbf210d74cee2b13.tar.gz
wsmancli-23a0079658f810c7d18b7a05fbf210d74cee2b13.tar.xz
wsmancli-23a0079658f810c7d18b7a05fbf210d74cee2b13.zip
improve client thread safety.
Diffstat (limited to 'tests')
-rw-r--r--tests/interop/interop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/interop/interop.c b/tests/interop/interop.c
index b1e31ec..5fea63f 100644
--- a/tests/interop/interop.c
+++ b/tests/interop/interop.c
@@ -240,13 +240,13 @@ int main(int argc, char** argv)
}
wsman_debug_set_level(debug_level);
- wsman_client_transport_init(NULL);
cl = wsman_create_client( uri->host,
uri->port,
uri->path,
uri->scheme,
uri->user,
uri->pwd);
+ wsman_client_transport_init(cl, NULL);
options = initialize_action_options();
if (file == NULL) {