From patchwork Sat Dec 24 04:39:13 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eric Dumazet X-Patchwork-Id: 133153 X-Patchwork-Delegate: shemminger@vyatta.com Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 79DB7B71AE for ; Sat, 24 Dec 2011 15:39:41 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754771Ab1LXEjT (ORCPT ); Fri, 23 Dec 2011 23:39:19 -0500 Received: from mail-ww0-f44.google.com ([74.125.82.44]:53144 "EHLO mail-ww0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754651Ab1LXEjS (ORCPT ); Fri, 23 Dec 2011 23:39:18 -0500 Received: by wgbdr13 with SMTP id dr13so18215575wgb.1 for ; Fri, 23 Dec 2011 20:39:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:subject:from:to:cc:date:content-type:x-mailer :content-transfer-encoding:mime-version; bh=T83xTdW8pEHkjCzSSlpFMXI63cs7eqI4HZZPhI067BI=; b=ROM/jzhmXMmezOLZfSVC5HWZuU3GgfWvqx87ZgalF9+nSSuK/OD9jG8apxn4GkcxPC dcqOIqhTYMJXrf4O1UqwKiRpdCuzkSR7kOIDEyW90kTt5LMBPdKSdd7FJGCYGUDGc4BA KgSAis8uzXWcfJVDBqG/VkfQHoFtV6g7fZ2Yc= Received: by 10.227.208.78 with SMTP id gb14mr16667430wbb.21.1324701556911; Fri, 23 Dec 2011 20:39:16 -0800 (PST) Received: from [10.170.237.2] ([87.255.129.107]) by mx.google.com with ESMTPS id fo18sm16017221wbb.12.2011.12.23.20.39.15 (version=SSLv3 cipher=OTHER); Fri, 23 Dec 2011 20:39:16 -0800 (PST) Message-ID: <1324701553.2915.32.camel@edumazet-laptop> Subject: [PATCH iproute2] netem: fix a typo in explain() From: Eric Dumazet To: Stephen Hemminger Cc: netdev Date: Sat, 24 Dec 2011 05:39:13 +0100 X-Mailer: Evolution 3.2.1- Mime-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Signed-off-by: Eric Dumazet --- tc/q_netem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/tc/q_netem.c b/tc/q_netem.c index e9a601b..b1fd452 100644 --- a/tc/q_netem.c +++ b/tc/q_netem.c @@ -38,7 +38,7 @@ static void explain(void) " [ loss random PERCENT [CORRELATION]]\n" \ " [ loss state P13 [P31 [P32 [P23 P14]]]\n" \ " [ loss gemodel PERCENT [R [1-H [1-K]]]\n" \ -" [ reorder PRECENT [CORRELATION] [ gap DISTANCE ]]\n"); +" [ reorder PERCENT [CORRELATION] [ gap DISTANCE ]]\n"); } static void explain1(const char *arg)