Blame SOURCES/0004-Get-rid-of-unused-variable.patch
|
|
6730c1 |
From 98ab67580f4cdcede021f6f5a2d9d50bb86bff55 Mon Sep 17 00:00:00 2001
|
|
|
6730c1 |
From: Guy Harris <guy@alum.mit.edu>
|
|
|
6730c1 |
Date: Wed, 5 Nov 2014 11:19:39 -0800
|
|
|
6730c1 |
Subject: [PATCH 4/4] Get rid of unused variable.
|
|
|
6730c1 |
|
|
|
6730c1 |
Also clean up white space a bit.
|
|
|
6730c1 |
|
|
|
6730c1 |
(cherry picked from 86db77ce320dd9e81e5cc7b93ac9adf26643b140)
|
|
|
6730c1 |
---
|
|
|
6730c1 |
gencode.c | 4 ++--
|
|
|
6730c1 |
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
6730c1 |
|
|
|
6730c1 |
diff --git a/gencode.c b/gencode.c
|
|
|
6730c1 |
index 2ff725e..9c1d17b 100644
|
|
|
6730c1 |
--- a/gencode.c
|
|
|
6730c1 |
+++ b/gencode.c
|
|
|
6730c1 |
@@ -7940,7 +7940,7 @@ struct block *
|
|
|
6730c1 |
gen_vlan(vlan_num)
|
|
|
6730c1 |
int vlan_num;
|
|
|
6730c1 |
{
|
|
|
6730c1 |
- struct block *b0, *b1;
|
|
|
6730c1 |
+ struct block *b0;
|
|
|
6730c1 |
|
|
|
6730c1 |
/* can't check for VLAN-encapsulated packets inside MPLS */
|
|
|
6730c1 |
if (label_stack_depth > 0)
|
|
|
6730c1 |
@@ -8012,7 +8012,7 @@ struct block *
|
|
|
6730c1 |
gen_mpls(label_num)
|
|
|
6730c1 |
int label_num;
|
|
|
6730c1 |
{
|
|
|
6730c1 |
- struct block *b0,*b1;
|
|
|
6730c1 |
+ struct block *b0, *b1;
|
|
|
6730c1 |
|
|
|
6730c1 |
/*
|
|
|
6730c1 |
* Change the offsets to point to the type and data fields within
|
|
|
6730c1 |
--
|
|
|
6730c1 |
2.4.3
|
|
|
6730c1 |
|