1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

spelling of associated

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall 2019-01-16 11:24:34 +13:00 committed by Andrew Bartlett
parent f8a85ed569
commit d0e26ea67f
3 changed files with 5 additions and 5 deletions

View 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

View 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 = []

View 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)
{