From cc09bddf2982cd06145add560d6d61006351a41f Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 11 Aug 2004 16:16:28 +0000 Subject: r1726: Fix up the comments and indenting. Andrew Bartlett (This used to be commit 30275764d8f22c47d46195e155d07c106ca3beba) --- source4/smb_server/password.c | 8 +++----- 1 file 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; -- cgit