From e35fe2d7b4ae79be6af9a70d8520620941960a72 Mon Sep 17 00:00:00 2001 From: Victor Seva Date: Tue, 22 Oct 2019 10:08:34 +0200 Subject: [PATCH] core: fix spelling error --- src/core/ppcfg.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/ppcfg.c b/src/core/ppcfg.c index 49065938afe..584a491ba23 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);