From patchwork Fri Mar 31 16:13:48 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arushi Singhal X-Patchwork-Id: 745708 X-Patchwork-Delegate: pablo@netfilter.org Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3vvmlh4xBXz9ryv for ; Sat, 1 Apr 2017 03:14:08 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b="YSmlf3/W"; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933222AbdCaQOI (ORCPT ); Fri, 31 Mar 2017 12:14:08 -0400 Received: from mail-pg0-f67.google.com ([74.125.83.67]:33519 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933126AbdCaQOI (ORCPT ); Fri, 31 Mar 2017 12:14:08 -0400 Received: by mail-pg0-f67.google.com with SMTP id 79so18432087pgf.0 for ; Fri, 31 Mar 2017 09:14:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=UJ9TxfYQC98BlgngHIjDnqTJS1ngDsn70E6LanV7znY=; b=YSmlf3/WzNpAjl6GKs7NlMN5nt9qlq7v65YE8spCJ5dDNHU4jFk0M/afgLdNtSyJQ8 YFNpyfKvZPOhaG64JEflpGd75ZL4eRPYUbpIcqmeTCr7N21/+MJc8HaNIeKvB4cviwvT 8DdfT9dDzUeVKDkt+O6k+sjy1+oJh1/vyzumclhqeNwHykVZJ/NH5HnbUE9/6bdvIYq8 jyL5jHb48d088gInbbDFpY5fwGl2rYJlXhtf/o70hSjSszsUGK52S2j9MG9Ba/rdbMlg 4gcGchKoy4L3OO2/ZjZeher1JyQa2k9IzvdEw/+Ervdf+sIT3x1w91ga6mbSeg8KX/a1 IIXA== 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; bh=UJ9TxfYQC98BlgngHIjDnqTJS1ngDsn70E6LanV7znY=; b=saJycaFlWF4a5Mb8mdNHaDB4kSJo8l0k0e8yb75KHFpkoJ4GIK2W8+BpDXOdfb9h4x 014GzofbXlmORHg8SWhQvtbDzPESxS2p++WqJ4nUuEoFOPKHjlcTpJa6w/zP3gWG2gV3 SMR1HfHp2/SkMF09CFGh2gUba0S1RUoYGbPz+TgcRHSnPHUFUFKyIeASsq7YJT/NPnU2 QjoFaYudVPoeO0Z3mlZnwakG5zF6U/dbDQh1gPn2Mb2sJIrGOqBGuGDugMFU7jhhUvUe QIMh95CeQu6dQdlWPapsZjwX7ChhuFJMD9GBIxULfeqjvL1hZ3DzpSpM8seUX/Aj3CbP oCmQ== X-Gm-Message-State: AFeK/H10y5Fv03lA69sfjhIPZCmF9IuEn4XbidDXA7RtPSw0i93d4I7y9K55j64sUVPWdw== X-Received: by 10.99.49.13 with SMTP id x13mr4062241pgx.128.1490976846932; Fri, 31 Mar 2017 09:14:06 -0700 (PDT) Received: from arushi-HP-Pavilion-Notebook ([14.139.82.6]) by smtp.gmail.com with ESMTPSA id z62sm11492597pff.88.2017.03.31.09.14.05 (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 31 Mar 2017 09:14:05 -0700 (PDT) From: Arushi Singhal To: netfilter-devel@vger.kernel.org Cc: Arushi Singhal Subject: [PATCH 1/4] iptables: iptables: Add blank line after declaration Date: Fri, 31 Mar 2017 21:43:48 +0530 Message-Id: <20170331161351.26141-2-arushisinghal19971997@gmail.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170331161351.26141-1-arushisinghal19971997@gmail.com> References: <20170331161351.26141-1-arushisinghal19971997@gmail.com> Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Add blank line after the declaration of variable to follow kernel coding style. Signed-off-by: Arushi Singhal --- iptables/getethertype.c | 1 + 1 file changed, 1 insertion(+) diff --git a/iptables/getethertype.c b/iptables/getethertype.c index 027ef4a..bf3e408 100644 --- a/iptables/getethertype.c +++ b/iptables/getethertype.c @@ -75,6 +75,7 @@ struct ethertypeent *getethertypeent(void) { char *e; char *endptr; + register char *cp, **q; if (etherf == NULL