From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4EC44A04A3 for ; Tue, 16 Jun 2020 17:17:37 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3B4A11BF83; Tue, 16 Jun 2020 17:17:37 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id AD04D1BF8A for ; Tue, 16 Jun 2020 17:17:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1592320655; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=IfSp3o9E8x0RPz76PcdsJvQRr2gimGc3s3O4X5TJIXU=; b=bfOmjYLcRTZnUuCjs69bB+0NPAtiaLGIevr1/K6bWwAeAHXuVZ+SSWsu5BYwz0YzBYSYja xtxsz+8/jeUIbQzsm6kYr4+v9J7S2b0yszQLyvlHjJ9deZK3EsIaxTyOlVnIuypsltlZWg vO4rI20WjOp1ftzebsseKY/dF23pmXo= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-98-Y8GNoj4UM06pDntebvu4-A-1; Tue, 16 Jun 2020 11:17:33 -0400 X-MC-Unique: Y8GNoj4UM06pDntebvu4-A-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 5142C107B475; Tue, 16 Jun 2020 15:17:32 +0000 (UTC) Received: from rh.redhat.com (unknown [10.33.36.205]) by smtp.corp.redhat.com (Postfix) with ESMTP id E80C45D9D3; Tue, 16 Jun 2020 15:17:28 +0000 (UTC) From: Kevin Traynor To: stable@dpdk.org Cc: david.hunt@intel.com, reshma.pattan@intel.com, thomas@monjalon.net, Kevin Traynor Date: Tue, 16 Jun 2020 16:17:13 +0100 Message-Id: <20200616151713.13128-3-ktraynor@redhat.com> In-Reply-To: <20200616151713.13128-1-ktraynor@redhat.com> References: <20200616151713.13128-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH 18.11 2/2] examples/vm_power: fix build because of missing include X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" strlcpy() was used but the file was not including the rte_string_fns.h header file. Include the missing header file. Fixes: d9219a9cac0f ("examples/power: fix string overflow") Signed-off-by: Kevin Traynor --- examples/vm_power_manager/channel_monitor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/vm_power_manager/channel_monitor.c b/examples/vm_power_manager/channel_monitor.c index 1d6d7ec6d5..7881c51885 100644 --- a/examples/vm_power_manager/channel_monitor.c +++ b/examples/vm_power_manager/channel_monitor.c @@ -31,4 +31,5 @@ #include #endif +#include #include -- 2.21.3