summaryrefslogtreecommitdiffstats
path: root/plugin
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2008-11-01 13:27:48 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2008-11-01 13:27:48 +0100
commit2a8bae0a9ebfe61f3d4b9399eada2750cfb437b6 (patch)
tree745bcffa87d78f9b99a03314304eabdf02586939 /plugin
parent061cbdb31c9d4ebbed91f75fa42aa1e34ac33673 (diff)
downloadeurephia-2a8bae0a9ebfe61f3d4b9399eada2750cfb437b6.tar.gz
eurephia-2a8bae0a9ebfe61f3d4b9399eada2750cfb437b6.tar.xz
eurephia-2a8bae0a9ebfe61f3d4b9399eada2750cfb437b6.zip
Fixed some typos
Diffstat (limited to 'plugin')
-rw-r--r--plugin/firewall/eurephiafw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/firewall/eurephiafw.c b/plugin/firewall/eurephiafw.c
index 3f43aa5..0189b16 100644
--- a/plugin/firewall/eurephiafw.c
+++ b/plugin/firewall/eurephiafw.c
@@ -38,7 +38,7 @@
#include "eurephia_nullsafe.h"
#include "eurephia_values.h"
#include "eurephiafw_helpers.h"
-#include "eurephuadb_driver.h"
+#include "eurephiadb_driver.h"
int eFW_unload(eurephiaCTX *ctx) {
if( ctx == NULL ) {
@@ -226,7 +226,7 @@ void eFW_StartFirewall(eurephiaCTX *ctx) {
};
// Registering already blacklisted IP addresses into the proper firewall chain
- blacklisted = eDBget_blaclisted_ip(ctx);
+ blacklisted = eDBget_blacklisted_ip(ctx);
p = blacklisted;
while( p != NULL ) {
eFW_UpdateFirewall(ctx, FWRULE_BLACKLIST, p->val, ctx->fwcfg->fwblacklist, NULL);