xfrm: fix checkpatch error
authorWeilong Chen <[email protected]>
Tue, 24 Dec 2013 01:43:49 +0000 (09:43 +0800)
committerSteffen Klassert <[email protected]>
Thu, 2 Jan 2014 06:48:50 +0000 (07:48 +0100)
Fix that "else should follow close brace '}'".

Signed-off-by: Weilong Chen <[email protected]>
Signed-off-by: Steffen Klassert <[email protected]>
net/xfrm/xfrm_policy.c

index fbc72b4570de756e8aaa3bfb8ac7d559b4f8ae9e..b5c315e175a0467f559c0c53a95e0bfbfcf95de6 100644 (file)
@@ -1316,9 +1316,9 @@ xfrm_tmpl_resolve_one(struct xfrm_policy *policy, const struct flowi *fl,
                        error = (x->km.state == XFRM_STATE_ERROR ?
                                 -EINVAL : -EAGAIN);
                        xfrm_state_put(x);
-               }
-               else if (error == -ESRCH)
+               } else if (error == -ESRCH) {
                        error = -EAGAIN;
+               }
 
                if (!tmpl->optional)
                        goto fail;