Module: kamailio Branch: 5.2 Commit: 8ea6d73689b954f2ae60261075b232d09401c525 URL: https://github.com/kamailio/kamailio/commit/8ea6d73689b954f2ae60261075b232d09401c525
Author: Victor Seva <[email protected]> Committer: Henning Westerholt <[email protected]> Date: 2020-01-23T15:53:22+01:00 core: fix spelling error (cherry picked from commit e35fe2d7b4ae79be6af9a70d8520620941960a72) --- Modified: src/core/ppcfg.c --- Diff: https://github.com/kamailio/kamailio/commit/8ea6d73689b954f2ae60261075b232d09401c525.diff Patch: https://github.com/kamailio/kamailio/commit/8ea6d73689b954f2ae60261075b232d09401c525.patch --- diff --git a/src/core/ppcfg.c b/src/core/ppcfg.c index 844247faa5..c7a09678ff 100644 --- a/src/core/ppcfg.c +++ b/src/core/ppcfg.c @@ -243,7 +243,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); @@ -255,7 +255,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); @@ -267,7 +267,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); _______________________________________________ Kamailio (SER) - Development Mailing List [email protected] https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev
