svn commit: r299150 - head/sys/rpc

Pedro F. Giffuni pfg at FreeBSD.org
Fri May 6 01:49:48 UTC 2016


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.
  */
 


More information about the svn-src-head mailing list