Module: kamailio
Branch: master
Commit: 49cbae4aab6c45a90080a40a7d4311e63d1311da
URL: https://github.com/kamailio/kamailio/commit/49cbae4aab6c45a90080a40a7d4311e…
Author: Olle E. Johansson <oej(a)edvina.net>
Committer: Olle E. Johansson <oej(a)edvina.net>
Date: 2015-01-11T22:21:57+01:00
tls change "ser.cfg" to "kamailio.cfg" in error message
---
Modified: modules/tls/tls_init.c
---
Diff: https://github.com/kamailio/kamailio/commit/49cbae4aab6c45a90080a40a7d4311e…
Patch: https://github.com/kamailio/kamailio/commit/49cbae4aab6c45a90080a40a7d4311e…
---
diff --git a/modules/tls/tls_init.c b/modules/tls/tls_init.c
index a53b91b..6812f42 100644
--- a/modules/tls/tls_init.c
+++ b/modules/tls/tls_init.c
@@ -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))
@@ -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"
@@ -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;
Module: kamailio
Branch: master
Commit: bc2b423dc6d2ee59dfa511ae442c30f73f499750
URL: https://github.com/kamailio/kamailio/commit/bc2b423dc6d2ee59dfa511ae442c30f…
Author: Olle E. Johansson <oej(a)edvina.net>
Committer: Olle E. Johansson <oej(a)edvina.net>
Date: 2015-01-11T15:02:57+01:00
timer Update header in source code
---
Modified: modules/timer/timer.c
---
Diff: https://github.com/kamailio/kamailio/commit/bc2b423dc6d2ee59dfa511ae442c30f…
Patch: https://github.com/kamailio/kamailio/commit/bc2b423dc6d2ee59dfa511ae442c30f…
---
diff --git a/modules/timer/timer.c b/modules/timer/timer.c
index 1986f26..abfbb70 100644
--- a/modules/timer/timer.c
+++ b/modules/timer/timer.c
@@ -1,21 +1,14 @@
/*
- * $Id$
- *
* Copyright (C) 2006 iptelorg GmbH
*
- * This file is part of ser, a free SIP server.
+ * This file is part of Kamailio, a free SIP server.
*
- * ser is free software; you can redistribute it and/or modify
+ * Kamailio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version
*
- * For a license to use the ser software under conditions
- * other than those described here, or to purchase support for this
- * software, please contact iptel.org by e-mail at the following addresses:
- * info(a)iptel.org
- *
- * ser is distributed in the hope that it will be useful,
+ * Kamailio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.