From patchwork Mon Jul 1 18:25:08 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Hemminger X-Patchwork-Id: 55799 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id F2D121B99F; Mon, 1 Jul 2019 20:25:52 +0200 (CEST) Received: from mail-pf1-f193.google.com (mail-pf1-f193.google.com [209.85.210.193]) by dpdk.org (Postfix) with ESMTP id C50B725D9 for ; Mon, 1 Jul 2019 20:25:46 +0200 (CEST) Received: by mail-pf1-f193.google.com with SMTP id m30so6959498pff.8 for ; Mon, 01 Jul 2019 11:25:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=cIkmBzKAiJ6ZQ7FsRXmnaHSrqnAjnZcv0WVtnzMl6sU=; b=ik2vdHZO+0m8U5BrvX25q9Gy3tYWS1OObLF912LztGJrJoOhuZ1OKDojMEAvLmKFlf +B1le7kAUT903S1dLg5tmp0YI2bIPlIJMrXQfk4w/IMaiYM1BIbdRMQ7XQD8CG+hfzrQ dvpaXslK7Hl27pIHh5fN6PG8YVN4a/TT2h0k03ZRHdYnTCNYGzQQbxMBt5C3hMjrsvNh uEKgh78PxXyPaeLVCak0YgaTX8vB96B4uTEzpOwlnWB5ZAeMosW31XuzDnxYQJ23Muu+ GGEEKnTVs0VaVJ2MC4U5q0N5n7Ts3I7QFyr1dpgsrf/SjYHCjghnvuDyqpNQNEgY4l8Z sPKw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=cIkmBzKAiJ6ZQ7FsRXmnaHSrqnAjnZcv0WVtnzMl6sU=; b=RIBwMCZ+46IQNjXWxtVbbwVuruuNpN8xY9D6IeZJogcDdfqmh9pM+SiKApbYIB6LV3 49u4S3o6GYiJZSMBtEsyZkYcEWUTnqd+61FqVowr85YV1Lrcfklwjdo97CQQ6o/sKzvj uac1BVvRtWl+I6Gt/fny3L3xBGo2aZHbmmOxJDHdMK4fKJY5n5LAqECVqKv2MH6Gnqqn 0d2niSj5sBMChOBmnUkX2od/a+cuYtkOVIqK4g4FLW1ne1Qrj8mnk5+lZ7yANMzaifRw 0IS6WpyQCyzXdieDA+zuKEUff9wJbfESbit+6BXh5vS26ZzvDHKuHVAys1jJIUbDHYmI gJLw== X-Gm-Message-State: APjAAAUcSnXao1CoyQGfNWqCP4pD/IMA7PgM9UwU3Jkp0I9Nvm2XF2Vl ySE9C1cOHIlqxRvnUlkq1ubdc19HF80= X-Google-Smtp-Source: APXvYqzHVhaGcc2ekCRQVr8VWrhn7gkfoiRnlQ/KjGpCI0Cdvx67RCs/h0vB+JJOeRNHgpHJnE0slw== X-Received: by 2002:a63:bd0a:: with SMTP id a10mr11806294pgf.55.1562005545704; Mon, 01 Jul 2019 11:25:45 -0700 (PDT) Received: from hermes.lan (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id 12sm11397340pfi.60.2019.07.01.11.25.44 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Mon, 01 Jul 2019 11:25:44 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Mon, 1 Jul 2019 11:25:08 -0700 Message-Id: <20190701182536.20110-3-stephen@networkplumber.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190701182536.20110-1-stephen@networkplumber.org> References: <20190701182536.20110-1-stephen@networkplumber.org> MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH 02/30] eal/windows: fix comment about fnmatch X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fix spelling error in comment, and clarify that pattern is supposed to be shell wildcare (not regex) in case someone ever decides to implement proper code for this. Signed-off-by: Stephen Hemminger --- lib/librte_eal/windows/eal/include/fnmatch.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_eal/windows/eal/include/fnmatch.h b/lib/librte_eal/windows/eal/include/fnmatch.h index 41b574312cde..b57b731e8aba 100644 --- a/lib/librte_eal/windows/eal/include/fnmatch.h +++ b/lib/librte_eal/windows/eal/include/fnmatch.h @@ -21,7 +21,7 @@ extern "C" { * with the given regular expression pattern. * * @param pattern - * regular expression notation decribing the pattern to match + * shell wildcard describing the pattern to match * * @param string * source string to searcg for the pattern