]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
runmode-pfring: Fixed typo s/fron/from/
authorMats Klepsland <mats.klepsland@gmail.com>
Wed, 1 Oct 2014 14:39:48 +0000 (16:39 +0200)
committerVictor Julien <victor@inliniac.net>
Thu, 2 Oct 2014 08:21:27 +0000 (10:21 +0200)
src/runmode-pfring.c

index 7d9b78498b58b38d17b0df02cff3a49efdd3144c..fc9271d5762581a9a90319186519b840098b3aa7 100644 (file)
@@ -166,7 +166,7 @@ void *OldParsePfringConfig(const char *iface)
         SCLogInfo("DNA interface detected, not setting cluster type for PF_RING (iface %s)",
                 pfconf->iface);
     } else if (ConfGet("pfring.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 PF_RING (iface %s)",
                 pfconf->iface);
@@ -340,7 +340,7 @@ void *ParsePfringConfig(const char *iface)
                     pfconf->iface);
         } else if (ConfGetChildValueWithDefault(if_root, if_default, "cluster-type", &tmpctype) != 1) {
             SCLogError(SC_ERR_GET_CLUSTER_TYPE_FAILED,
-                       "Could not get cluster-type fron config");
+                       "Could not get cluster-type from config");
         } else {
             getctype = 1;
         }