From: Victor Julien Date: Tue, 3 May 2016 08:29:05 +0000 (+0200) Subject: coverty: fix dead code warning X-Git-Tag: suricata-3.1RC1~204 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db4ec46f1864dd7ab6333e47c1294b0c4a41cc8c;p=thirdparty%2Fsuricata.git coverty: fix dead code warning --- diff --git a/src/util-device.c b/src/util-device.c index f58bbc35a8..a4e634ee0c 100644 --- a/src/util-device.c +++ b/src/util-device.c @@ -126,10 +126,10 @@ int LiveSafeDeviceName(const char *devname, char *newdevname, size_t destlen) * max length of pthread names (15 chars) and we use 3 chars * for the threadname indicator eg. "W#-" and one-two chars for * the thread number. And if the destination buffer is under - * 6 chars there is point in shortening it since we must at - * lest enter two periodes (.) into the string.. + * 6 chars there is no point in shortening it since we must at + * least enter two periods (.) into the string. */ - if ((destlen-1) > 10 && (destlen-1) < 6) { + if ((destlen-1) > 10 || (destlen-1) < 6) { return 1; }