{cbc,remsim}: fix unbound 'use_ssl' field in HTTP_Adapter_Params

A recent commit added a new field to record HTTP_Adapter_Params, but
forgot to update the callers f_http_init() to actually set this field.

Change-Id: I534d087b71cefd683a0c7411a415049c5e1ee519
Fixes: 832b1efe "HTTP_Adapter: Allow API users to enable/disable SSL"
diff --git a/cbc/CBC_Tests.ttcn b/cbc/CBC_Tests.ttcn
index 57f4d9e..52f6378 100644
--- a/cbc/CBC_Tests.ttcn
+++ b/cbc/CBC_Tests.ttcn
@@ -187,10 +187,10 @@
 }
 
 private function f_init(integer num_bsc := 0, integer num_mme := 0) runs on test_CT {
-	var HTTP_Adapter_Params http_adapter_pars;
-	http_adapter_pars := {
+	var HTTP_Adapter_Params http_adapter_pars := {
 		http_host := mp_cbc_host,
-		http_port := mp_cbc_ecbe_port
+		http_port := mp_cbc_ecbe_port,
+		use_ssl := false
 	};
 	f_http_init(http_adapter_pars);