Skip to content

Commit

Permalink
tls change "ser.cfg" to "kamailio.cfg" in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
oej committed Jan 11, 2015
1 parent c8eeed2 commit 49cbae4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/tls/tls_init.c
Expand Up @@ -519,11 +519,11 @@ int init_tls_h(void)
* (e.g. 0.9.8a & 0.9.8c are ok, but 0.9.8 and 0.9.9x are not) */
if ((ssl_version>>8)!=(OPENSSL_VERSION_NUMBER>>8)){
LOG(L_CRIT, "ERROR: tls: init_tls_h: installed openssl library "
"version is too different from the library the ser tls module "
"version is too different from the library the Kamailio tls module "
"was compiled with: installed \"%s\" (0x%08lx), compiled "
"\"%s\" (0x%08lx).\n"
" Please make sure a compatible version is used"
" (tls_force_run in ser.cfg will override this check)\n",
" (tls_force_run in kamailio.cfg will override this check)\n",
SSLeay_version(SSLEAY_VERSION), ssl_version,
OPENSSL_VERSION_TEXT, (long)OPENSSL_VERSION_NUMBER);
if (cfg_get(tls, tls_cfg, force_run))
Expand Down Expand Up @@ -572,8 +572,8 @@ int init_tls_h(void)
if (lib_kerberos!=-1){
LOG(L_CRIT, "ERROR: tls: init_tls_h: openssl compile options"
" mismatch: library has kerberos support"
" %s and ser tls %s (unstable configuration)\n"
" (tls_force_run in ser.cfg will override this"
" %s and Kamailio tls %s (unstable configuration)\n"
" (tls_force_run in kamailio.cfg will override this"
" check)\n",
lib_kerberos?"enabled":"disabled",
kerberos_support?"enabled":"disabled"
Expand Down Expand Up @@ -624,7 +624,7 @@ int init_tls_h(void)
low_mem_threshold1, low_mem_threshold2);

if (shm_available()==(unsigned long)(-1)){
LOG(L_WARN, "tls: ser compiled without MALLOC_STATS support:"
LOG(L_WARN, "tls: Kamailio is compiled without MALLOC_STATS support:"
" the workaround for low mem. openssl bugs will _not_ "
"work\n");
low_mem_threshold1=0;
Expand Down

0 comments on commit 49cbae4

Please sign in to comment.