Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d3e35aa authored by Gerrit Renker's avatar Gerrit Renker Committed by David S. Miller
Browse files

dccp: Fix bracing in dccp_feat_list_lookup.



From: Gerrit Renker <gerrit@erg.abdn.ac.uk>

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f4bdd264
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -171,11 +171,12 @@ static struct dccp_feat_entry *dccp_feat_list_lookup(struct list_head *fn_list,
{
	struct dccp_feat_entry *entry;

	list_for_each_entry(entry, fn_list, node)
	list_for_each_entry(entry, fn_list, node) {
		if (entry->feat_num == feat_num && entry->is_local == is_local)
			return entry;
		else if (entry->feat_num > feat_num)
			break;
	}
	return NULL;
}