THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.

The following task has a new comment added:

FS#183 - tls module error on initialization when used together with the dialog 
module
User who did this - Daniel-Constantin Mierla (miconda)

----------
shm was not initialized at that moment, edit modules/tls/tls_moc.c:

- include the file:

#include "../../shm_init.h"

- and replace existing mod_register function with:

int mod_register(char *path, int *dlflags, void *p1, void *p2)
{
        if(!shm_initialized() && init_shm()<0)
                return -1;

        if(tls_pre_init()<0)
                return -1;
        return 0;
}


----------

More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=183#comment460

You are receiving this message because you have requested it from the Flyspray 
bugtracking system.  If you did not expect this message or don't want to 
receive mails in future, you can change your notification settings at the URL 
shown above.

_______________________________________________
sr-dev mailing list
[email protected]
http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-dev

Reply via email to