We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b64d072 + bbbe695 commit 962ba07Copy full SHA for 962ba07
modules/db_virtual/dbase.c
@@ -273,16 +273,14 @@ do{
273
}while(0) \
274
275
276
-db_con_t* db_virtual_init(const str* _set_url)
277
-{
278
/*
279
find set_url in global state
280
get index
281
allocate
282
populate with db_init
283
*/
284
- LM_DBG("INIT set_name, %.*s\n", _set_url->len, _set_url->s);
285
-
+db_con_t* db_virtual_init(const str* _set_url)
+{
286
int i;
287
int index = -1;
288
db_con_t * res=NULL;
@@ -295,6 +293,8 @@ db_con_t* db_virtual_init(const str* _set_url)
295
293
return NULL;
296
294
}
297
+ LM_DBG("INIT set_name, %.*s\n", _set_url->len, _set_url->s);
+
298
/* so that loadmodule order does not matter */
299
if(!global){
300
if(virtual_mod_init())
0 commit comments