From 623bb38d1c3c11c6ae8b16c09c99165c61062b2f Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Mon, 2 Jan 2012 17:07:37 +0100 Subject: [PATCH] af-packet: Fix typo in error message. --- src/runmode-af-packet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runmode-af-packet.c b/src/runmode-af-packet.c index ce88039780..74ebbb3a76 100644 --- a/src/runmode-af-packet.c +++ b/src/runmode-af-packet.c @@ -165,7 +165,7 @@ void *ParseAFPConfig(const char *iface) } if (ConfGetChildValue(if_root, "cluster-type", &tmpctype) != 1) { - SCLogError(SC_ERR_GET_CLUSTER_TYPE_FAILED,"Could not get cluster-type fron config"); + SCLogError(SC_ERR_GET_CLUSTER_TYPE_FAILED,"Could not get cluster-type from config"); } else if (strcmp(tmpctype, "cluster_round_robin") == 0) { SCLogInfo("Using round-robin cluster mode for AF_PACKET (iface %s)", aconf->iface);