Module: kamailio Branch: 5.3 Commit: 09b3a82e496dd6f45a8f55fb06ca8ff6d4582aa1 URL: https://github.com/kamailio/kamailio/commit/09b3a82e496dd6f45a8f55fb06ca8ff6...
Author: Victor Seva linuxmaniac@torreviejawireless.org Committer: Victor Seva linuxmaniac@torreviejawireless.org Date: 2019-10-22T10:27:37+02:00
core: fix spelling error
(cherry picked from commit e35fe2d7b4ae79be6af9a70d8520620941960a72)
---
Modified: src/core/ppcfg.c
---
Diff: https://github.com/kamailio/kamailio/commit/09b3a82e496dd6f45a8f55fb06ca8ff6... Patch: https://github.com/kamailio/kamailio/commit/09b3a82e496dd6f45a8f55fb06ca8ff6...
---
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);