Module: kamailio Branch: master Commit: 3c26ebe4670eaffce4754bbd0cd76cbecf5bf590 URL: https://github.com/kamailio/kamailio/commit/3c26ebe4670eaffce4754bbd0cd76cbe...
Author: Victor Seva linuxmaniac@torreviejawireless.org Committer: Victor Seva linuxmaniac@torreviejawireless.org Date: 2019-10-22T09:52:42+02:00
secfilter: fix spelling error
---
Modified: src/modules/secfilter/secfilter_db.c
---
Diff: https://github.com/kamailio/kamailio/commit/3c26ebe4670eaffce4754bbd0cd76cbe... Patch: https://github.com/kamailio/kamailio/commit/3c26ebe4670eaffce4754bbd0cd76cbe...
---
diff --git a/src/modules/secfilter/secfilter_db.c b/src/modules/secfilter/secfilter_db.c index 535b67922e..861f1a14bd 100644 --- a/src/modules/secfilter/secfilter_db.c +++ b/src/modules/secfilter/secfilter_db.c @@ -108,7 +108,7 @@ int secf_append_rule(int action, int type, str *value) char *v = NULL;
if(action < 0 || action > 2) { - LM_ERR("Unkown action value %d", action); + LM_ERR("Unknown action value %d", action); return -1; }
@@ -147,7 +147,7 @@ int secf_append_rule(int action, int type, str *value) last_node = &last->user; break; default: - LM_ERR("Unkown type value %d", type); + LM_ERR("Unknown type value %d", type); return -1; }