From owner-svn-src-all@freebsd.org Fri May 6 01:49:48 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70790B2EBDC; Fri, 6 May 2016 01:49:48 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3099A123E; Fri, 6 May 2016 01:49:48 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u461nlCT054098; Fri, 6 May 2016 01:49:47 GMT (envelope-from pfg@FreeBSD.org) Received: (from pfg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u461nk4o054092; Fri, 6 May 2016 01:49:46 GMT (envelope-from pfg@FreeBSD.org) Message-Id: <201605060149.u461nk4o054092@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pfg set sender to pfg@FreeBSD.org using -f From: "Pedro F. Giffuni" Date: Fri, 6 May 2016 01:49:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r299150 - head/sys/rpc X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 May 2016 01:49:48 -0000 Author: pfg Date: Fri May 6 01:49:46 2016 New Revision: 299150 URL: https://svnweb.freebsd.org/changeset/base/299150 Log: sys/rpc: minor spelling fixes. No functional change. Modified: head/sys/rpc/clnt_bck.c head/sys/rpc/clnt_dg.c head/sys/rpc/clnt_vc.c head/sys/rpc/svc.c head/sys/rpc/svc.h head/sys/rpc/types.h Modified: head/sys/rpc/clnt_bck.c ============================================================================== --- head/sys/rpc/clnt_bck.c Fri May 6 01:38:12 2016 (r299149) +++ head/sys/rpc/clnt_bck.c Fri May 6 01:49:46 2016 (r299150) @@ -431,7 +431,7 @@ got_reply: } } /* end successful completion */ /* - * If unsuccesful AND error is an authentication error + * If unsuccessful AND error is an authentication error * then refresh credentials and try again, else break */ else if (stat == RPC_AUTHERROR) Modified: head/sys/rpc/clnt_dg.c ============================================================================== --- head/sys/rpc/clnt_dg.c Fri May 6 01:38:12 2016 (r299149) +++ head/sys/rpc/clnt_dg.c Fri May 6 01:49:46 2016 (r299150) @@ -742,7 +742,7 @@ got_reply: } } /* end successful completion */ /* - * If unsuccesful AND error is an authentication error + * If unsuccessful AND error is an authentication error * then refresh credentials and try again, else break */ else if (stat == RPC_AUTHERROR) @@ -882,7 +882,7 @@ clnt_dg_control(CLIENT *cl, u_int reques /* * This RELIES on the information that, in the call body, * the version number field is the fifth field from the - * begining of the RPC header. MUST be changed if the + * beginning of the RPC header. MUST be changed if the * call_struct is changed */ *(uint32_t *)info = @@ -899,7 +899,7 @@ clnt_dg_control(CLIENT *cl, u_int reques /* * This RELIES on the information that, in the call body, * the program number field is the fourth field from the - * begining of the RPC header. MUST be changed if the + * beginning of the RPC header. MUST be changed if the * call_struct is changed */ *(uint32_t *)info = Modified: head/sys/rpc/clnt_vc.c ============================================================================== --- head/sys/rpc/clnt_vc.c Fri May 6 01:38:12 2016 (r299149) +++ head/sys/rpc/clnt_vc.c Fri May 6 01:49:46 2016 (r299150) @@ -520,7 +520,7 @@ got_reply: } } /* end successful completion */ /* - * If unsuccesful AND error is an authentication error + * If unsuccessful AND error is an authentication error * then refresh credentials and try again, else break */ else if (stat == RPC_AUTHERROR) @@ -653,7 +653,7 @@ clnt_vc_control(CLIENT *cl, u_int reques /* * This RELIES on the information that, in the call body, * the version number field is the fifth field from the - * begining of the RPC header. MUST be changed if the + * beginning of the RPC header. MUST be changed if the * call_struct is changed */ *(uint32_t *)info = @@ -671,7 +671,7 @@ clnt_vc_control(CLIENT *cl, u_int reques /* * This RELIES on the information that, in the call body, * the program number field is the fourth field from the - * begining of the RPC header. MUST be changed if the + * beginning of the RPC header. MUST be changed if the * call_struct is changed */ *(uint32_t *)info = Modified: head/sys/rpc/svc.c ============================================================================== --- head/sys/rpc/svc.c Fri May 6 01:38:12 2016 (r299149) +++ head/sys/rpc/svc.c Fri May 6 01:49:46 2016 (r299150) @@ -440,7 +440,7 @@ xprt_inactive(SVCXPRT *xprt) /* * Variant of xprt_inactive() for use only when sure that port is - * assigned to thread. For example, withing receive handlers. + * assigned to thread. For example, within receive handlers. */ void xprt_inactive_self(SVCXPRT *xprt) Modified: head/sys/rpc/svc.h ============================================================================== --- head/sys/rpc/svc.h Fri May 6 01:38:12 2016 (r299149) +++ head/sys/rpc/svc.h Fri May 6 01:49:46 2016 (r299150) @@ -226,7 +226,7 @@ typedef struct __rpc_svcxprt_ext { * The services list * Each entry represents a set of procedures (an rpc program). * The dispatch routine takes request structs and runs the - * apropriate procedure. + * appropriate procedure. */ struct svc_callout { TAILQ_ENTRY(svc_callout) sc_link; @@ -240,7 +240,7 @@ TAILQ_HEAD(svc_callout_list, svc_callout /* * The services connection loss list * The dispatch routine takes request structs and runs the - * apropriate procedure. + * appropriate procedure. */ struct svc_loss_callout { TAILQ_ENTRY(svc_loss_callout) slc_link; Modified: head/sys/rpc/types.h ============================================================================== --- head/sys/rpc/types.h Fri May 6 01:38:12 2016 (r299149) +++ head/sys/rpc/types.h Fri May 6 01:49:46 2016 (r299150) @@ -94,7 +94,7 @@ struct netbuf { }; /* - * The format of the addres and options arguments of the XTI t_bind call. + * The format of the address and options arguments of the XTI t_bind call. * Only provided for compatibility, it should not be used. */