summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/smb_server/password.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/source4/smb_server/password.c b/source4/smb_server/password.c
index e297be6c75..492f5700ad 100644
--- a/source4/smb_server/password.c
+++ b/source4/smb_server/password.c
@@ -85,11 +85,9 @@ void smbsrv_invalidate_all_vuids(struct smbsrv_connection *smb_conn)
/**
* register that a valid login has been performed, establish 'session'.
- * @param server_info The token returned from the authentication process.
+ * @param session_info The token returned from the authentication process (if the authentication has completed)
* (now 'owned' by register_vuid)
*
- * @param session_key The User session key for the login session (now also 'owned' by register_vuid)
- *
* @param smb_name The untranslated name of the user
*
* @return Newly allocated vuid, biased by an offset. (This allows us to
@@ -98,8 +96,8 @@ void smbsrv_invalidate_all_vuids(struct smbsrv_connection *smb_conn)
*/
uint16_t smbsrv_register_session(struct smbsrv_connection *smb_conn,
- struct auth_session_info *session_info,
- struct gensec_security *gensec_ctx)
+ struct auth_session_info *session_info,
+ struct gensec_security *gensec_ctx)
{
struct smbsrv_session *sess = NULL;