From db4ec46f1864dd7ab6333e47c1294b0c4a41cc8c Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Tue, 3 May 2016 10:29:05 +0200 Subject: [PATCH] coverty: fix dead code warning --- src/util-device.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; } -- 2.47.2