summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ctdb/common/comm.h2
-rw-r--r--python/samba/netcmd/processes.py2
-rw-r--r--source4/smb_server/session.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/ctdb/common/comm.h b/ctdb/common/comm.h
index 27021e945af..e11d38e93b2 100644
--- a/ctdb/common/comm.h
+++ b/ctdb/common/comm.h
@@ -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
diff --git a/python/samba/netcmd/processes.py b/python/samba/netcmd/processes.py
index 0406b1859ca..09b8529448c 100644
--- a/python/samba/netcmd/processes.py
+++ b/python/samba/netcmd/processes.py
@@ -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 = []
diff --git a/source4/smb_server/session.c b/source4/smb_server/session.c
index aa8d752fded..321d7dd6388 100644
--- a/source4/smb_server/session.c
+++ b/source4/smb_server/session.c
@@ -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)
{