spelling of associated
authorDouglas Bagnall <douglas.bagnall@catalyst.net.nz>
Tue, 15 Jan 2019 22:24:34 +0000 (11:24 +1300)
committerAndrew Bartlett <abartlet@samba.org>
Wed, 13 Feb 2019 03:15:14 +0000 (04:15 +0100)
Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
ctdb/common/comm.h
python/samba/netcmd/processes.py
source4/smb_server/session.c

index 27021e945af1823e11dbf72f9d37b27d538a0244..e11d38e93b22f843858264155ab10291184fd29c 100644 (file)
@@ -57,7 +57,7 @@ struct comm_context;
  * @brief Initialize the communication endpoint
  *
  * This return a new communication context. Freeing this context will free all
- * memory assoicated with it.
+ * memory associated with it.
  *
  * @param[in] mem_ctx Talloc memory context
  * @param[in] ev Tevent context
index 0406b1859ca2f5f36a661de93b33b433f393115d..09b8529448c7c4f14b3648452e7424675949f797 100644 (file)
@@ -44,7 +44,7 @@ class cmd_processes(Command):
         Option("--name", type=str,
                help="Return only processes associated with one particular name"),
         Option("--pid", type=int,
-               help="Return only names assoicated with one particular PID"),
+               help="Return only names associated with one particular PID"),
     ]
 
     takes_args = []
index aa8d752fdedbb7b37de99e188c527136401c11e6..321d7dd63888b01be32cbcfa942b3732d0db86cc 100644 (file)
@@ -43,7 +43,7 @@ NTSTATUS smbsrv_init_sessions(struct smbsrv_connection *smb_conn, uint64_t limit
 }
 
 /*
- * Find the session structure assoicated with a VUID
+ * Find the session structure associated with a VUID
  * (not one from an in-progress session setup)
  */
 struct smbsrv_session *smbsrv_session_find(struct smbsrv_connection *smb_conn,
@@ -70,8 +70,8 @@ struct smbsrv_session *smbsrv_session_find(struct smbsrv_connection *smb_conn,
 }
 
 /*
- * Find the session structure assoicated with a VUID
- * (assoicated with an in-progress session setup)
+ * Find the session structure associated with a VUID
+ * (associated with an in-progress session setup)
  */
 struct smbsrv_session *smbsrv_session_find_sesssetup(struct smbsrv_connection *smb_conn, uint64_t vuid)
 {