[SCM] Samba Shared Repository - branch master updated

Volker Lendecke vlendec at samba.org
Mon Apr 12 13:43:38 MDT 2010


The branch, master has been updated
       via  b1a27e8... s3: Apply some const
      from  1a27343... s3/s4:netlogon IDL - fix up "struct netr_SamInfo6" regarding the "forest" attribute

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit b1a27e81d712ada8eebc587a4c35fbb48b4762cb
Author: Volker Lendecke <vl at samba.org>
Date:   Mon Apr 12 21:31:33 2010 +0200

    s3: Apply some const

-----------------------------------------------------------------------

Summary of changes:
 source3/auth/user_info.c |    8 +++++---
 source3/include/proto.h  |    8 +++++---
 2 files changed, 10 insertions(+), 6 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/auth/user_info.c b/source3/auth/user_info.c
index df08b73..eb84a36 100644
--- a/source3/auth/user_info.c
+++ b/source3/auth/user_info.c
@@ -32,9 +32,11 @@ NTSTATUS make_user_info(struct auth_usersupplied_info **user_info,
 			const char *client_domain,
 			const char *domain,
 			const char *wksta_name,
-			DATA_BLOB *lm_pwd, DATA_BLOB *nt_pwd,
-			DATA_BLOB *lm_interactive_pwd, DATA_BLOB *nt_interactive_pwd,
-			DATA_BLOB *plaintext,
+			const DATA_BLOB *lm_pwd,
+			const DATA_BLOB *nt_pwd,
+			const DATA_BLOB *lm_interactive_pwd,
+			const DATA_BLOB *nt_interactive_pwd,
+			const DATA_BLOB *plaintext,
 			bool encrypted)
 {
 
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 930dcc8..bd81690 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -162,9 +162,11 @@ NTSTATUS make_user_info(struct auth_usersupplied_info **user_info,
 			const char *client_domain,
 			const char *domain,
 			const char *wksta_name,
-			DATA_BLOB *lm_pwd, DATA_BLOB *nt_pwd,
-			DATA_BLOB *lm_interactive_pwd, DATA_BLOB *nt_interactive_pwd,
-			DATA_BLOB *plaintext,
+			const DATA_BLOB *lm_pwd,
+			const DATA_BLOB *nt_pwd,
+			const DATA_BLOB *lm_interactive_pwd,
+			const DATA_BLOB *nt_interactive_pwd,
+			const DATA_BLOB *plaintext,
 			bool encrypted);
 void free_user_info(struct auth_usersupplied_info **user_info);
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list