[SCM] Samba Shared Repository - branch v3-2-test updated - initial-v3-2-unstable-83-g3c50caa

Gerald (Jerry) Carter jerry at samba.org
Fri Oct 19 21:49:09 GMT 2007


The branch, v3-2-test has been updated
       via  3c50caa9620899f982cd4a833356d965f47ec843 (commit)
      from  23d3db0c229fe5e1d69f890d87c2be39b356ffb5 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 3c50caa9620899f982cd4a833356d965f47ec843
Author: Volker Lendecke <vl at sernet.de>
Date:   Fri Oct 19 23:21:01 2007 +0200

    Fix an incompatible pointer type warning

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

Summary of changes:
 source/winbindd/idmap.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/winbindd/idmap.c b/source/winbindd/idmap.c
index 9800e32..e89ad73 100644
--- a/source/winbindd/idmap.c
+++ b/source/winbindd/idmap.c
@@ -362,9 +362,9 @@ NTSTATUS idmap_init(void)
 
 	if ( ! dom_list) {
 		/* generate a list with our main domain */
-		char ** dl;
+		const char ** dl;
 
-		dl = talloc_array(idmap_ctx, char *, 2);
+		dl = talloc_array(idmap_ctx, const char *, 2);
 		if (dl == NULL) {
 			ret = NT_STATUS_NO_MEMORY;
 			goto done;


-- 
Samba Shared Repository


More information about the samba-cvs mailing list