summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wsman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wsman.c b/src/wsman.c
index 9dbd12b..c0cfba8 100644
--- a/src/wsman.c
+++ b/src/wsman.c
@@ -814,7 +814,7 @@ int main(int argc, char **argv)
}
break;
case WSMAN_ACTION_UNSUBSCRIBE:
- rqstDoc = wsmc_action_unsubscribe(cl, options, event_subscription_id);
+ rqstDoc = wsmc_action_unsubscribe(cl, resource_uri, options, event_subscription_id);
wsman_output(cl, rqstDoc);
if (rqstDoc) {
ws_xml_destroy_doc(rqstDoc);
@@ -823,7 +823,7 @@ int main(int argc, char **argv)
case WSMAN_ACTION_RENEW:
if(event_subscription_expire)
options->expires = event_subscription_expire;
- rqstDoc = wsmc_action_renew(cl, options, event_subscription_id);
+ rqstDoc = wsmc_action_renew(cl, resource_uri, options, event_subscription_id);
wsman_output(cl, rqstDoc);
if (rqstDoc) {
ws_xml_destroy_doc(rqstDoc);