Module: kamailio Branch: master Commit: e35fe2d7b4ae79be6af9a70d8520620941960a72 URL: https://github.com/kamailio/kamailio/commit/e35fe2d7b4ae79be6af9a70d85206209...
Author: Victor Seva linuxmaniac@torreviejawireless.org Committer: Victor Seva linuxmaniac@torreviejawireless.org Date: 2019-10-22T10:08:34+02:00
core: fix spelling error
---
Modified: src/core/ppcfg.c
---
Diff: https://github.com/kamailio/kamailio/commit/e35fe2d7b4ae79be6af9a70d85206209... Patch: https://github.com/kamailio/kamailio/commit/e35fe2d7b4ae79be6af9a70d85206209...
---
diff --git a/src/core/ppcfg.c b/src/core/ppcfg.c index 49065938af..584a491ba2 100644 --- a/src/core/ppcfg.c +++ b/src/core/ppcfg.c @@ -250,7 +250,7 @@ void pp_define_core(void)
n = snprintf(p, 64 - (int)(p-defval), "_%d", VERSIONVAL/1000000); if(n<0 || n>=64 - (int)(p-defval)) { - LM_ERR("faild to build define token\n"); + LM_ERR("failed to build define token\n"); return; } pp_define_set_type(0); @@ -262,7 +262,7 @@ void pp_define_core(void) n = snprintf(p, 64 - (int)(p-defval), "_%d_%d", VERSIONVAL/1000000, (VERSIONVAL%1000000)/1000); if(n<0 || n>=64 - (int)(p-defval)) { - LM_ERR("faild to build define token\n"); + LM_ERR("failed to build define token\n"); return; } pp_define_set_type(0); @@ -274,7 +274,7 @@ void pp_define_core(void) n = snprintf(p, 64 - (int)(p-defval), "_%d_%d_%d", VERSIONVAL/1000000, (VERSIONVAL%1000000)/1000, VERSIONVAL%1000); if(n<0 || n>=64 - (int)(p-defval)) { - LM_ERR("faild to build define token\n"); + LM_ERR("failed to build define token\n"); return; } pp_define_set_type(0);