From: Eric Leblond Date: Thu, 12 Sep 2013 13:17:38 +0000 (+0200) Subject: reject: fix typo X-Git-Tag: suricata-2.0beta2~257 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e15cf2245186109fb4ec965ca675b95adb2d911;p=thirdparty%2Fsuricata.git reject: fix typo --- diff --git a/src/respond-reject-libnet11.c b/src/respond-reject-libnet11.c index e0ff22d49d..a5993d4f4f 100644 --- a/src/respond-reject-libnet11.c +++ b/src/respond-reject-libnet11.c @@ -92,7 +92,7 @@ int RejectSendLibnet11L3IPv4TCP(ThreadVars *tv, Packet *p, void *data, int dir) SCLogDebug("Will emit reject packet on dev %s", devname); } if ((c = libnet_init(LIBNET_RAW4, devname, ebuf)) == NULL) { - SCLogError(SC_ERR_LIBNET_INIT,"libnet_inint failed: %s", ebuf); + SCLogError(SC_ERR_LIBNET_INIT,"libnet_init failed: %s", ebuf); return 1; }