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

Commit 89f0e4fe authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

sunrpc: Reduce switch/case indent



Make the case labels the same indent as the switch.

git diff -w shows 80 column line reflowing.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7fd71b1e
Loading
Loading
Loading
Loading
+22 −24
Original line number Diff line number Diff line
@@ -1426,12 +1426,10 @@ gss_wrap_req(struct rpc_task *task,
		status = 0;
		break;
	case RPC_GSS_SVC_INTEGRITY:
			status = gss_wrap_req_integ(cred, ctx, encode,
								rqstp, p, obj);
		status = gss_wrap_req_integ(cred, ctx, encode, rqstp, p, obj);
		break;
	case RPC_GSS_SVC_PRIVACY:
			status = gss_wrap_req_priv(cred, ctx, encode,
					rqstp, p, obj);
		status = gss_wrap_req_priv(cred, ctx, encode, rqstp, p, obj);
		break;
	}
out:
+12 −13
Original line number Diff line number Diff line
@@ -1666,8 +1666,7 @@ rpc_verify_header(struct rpc_task *task)
		case RPC_AUTH_ERROR:
			break;
		case RPC_MISMATCH:
				dprintk("RPC: %5u %s: RPC call version "
						"mismatch!\n",
			dprintk("RPC: %5u %s: RPC call version mismatch!\n",
				task->tk_pid, __func__);
			error = -EPROTONOSUPPORT;
			goto out_err;
+7 −7

File changed.

Contains only whitespace changes.