diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-08-11 16:16:28 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:57:50 -0500 |
commit | cc09bddf2982cd06145add560d6d61006351a41f (patch) | |
tree | 3c761e7ce88f804cb39db8a47042645ad7c1fdfb /source4 | |
parent | 5a79e6cf484cd27092217a8e739e6d79bb8b12e9 (diff) | |
download | samba-cc09bddf2982cd06145add560d6d61006351a41f.tar.gz samba-cc09bddf2982cd06145add560d6d61006351a41f.tar.bz2 samba-cc09bddf2982cd06145add560d6d61006351a41f.zip |
r1726: Fix up the comments and indenting.
Andrew Bartlett
(This used to be commit 30275764d8f22c47d46195e155d07c106ca3beba)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/smb_server/password.c | 8 |
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; |