[sr-dev] git:master:e35fe2d7: core: fix spelling error

Victor Seva linuxmaniac at torreviejawireless.org
Tue Oct 22 10:09:04 CEST 2019


Module: kamailio
Branch: master
Commit: e35fe2d7b4ae79be6af9a70d8520620941960a72
URL: https://github.com/kamailio/kamailio/commit/e35fe2d7b4ae79be6af9a70d8520620941960a72

Author: Victor Seva <linuxmaniac at torreviejawireless.org>
Committer: Victor Seva <linuxmaniac at 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/e35fe2d7b4ae79be6af9a70d8520620941960a72.diff
Patch: https://github.com/kamailio/kamailio/commit/e35fe2d7b4ae79be6af9a70d8520620941960a72.patch

---

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);




More information about the sr-dev mailing list