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

Commit 04d70eda authored by Scott Mayhew's avatar Scott Mayhew Committed by J. Bruce Fields
Browse files

sunrpc: add gss minor status to svcauth_gss_proxy_init



GSS-Proxy doesn't produce very much debug logging at all.  Printing out
the gss minor status will aid in troubleshooting if the
GSS_Accept_sec_context upcall fails.

Signed-off-by: default avatarScott Mayhew <smayhew@redhat.com>
Signed-off-by: default avatarJ. Bruce Fields <bfields@redhat.com>
parent ed941643
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1230,8 +1230,9 @@ static int svcauth_gss_proxy_init(struct svc_rqst *rqstp,
	if (status)
		goto out;

	dprintk("RPC:       svcauth_gss: gss major status = %d\n",
			ud.major_status);
	dprintk("RPC:       svcauth_gss: gss major status = %d "
			"minor status = %d\n",
			ud.major_status, ud.minor_status);

	switch (ud.major_status) {
	case GSS_S_CONTINUE_NEEDED: