The branch, v3-0-test has been updated
       via  2c01540a763f19c2d4c658607efb16285a1e25a5 (commit)
      from  f04810e9f216ad43b45b69e6e0c6792cc93076a1 (commit)

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


- Log -----------------------------------------------------------------
commit 2c01540a763f19c2d4c658607efb16285a1e25a5
Author: Kai Blin <[EMAIL PROTECTED]>
Date:   Mon Jan 28 16:52:37 2008 +0100

    idmap: Fix an incompatible pointer type warning.
    
    Thanks to Simo for pointing me at the easier solution

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

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


Changeset truncated at 500 lines:

diff --git a/source/nsswitch/idmap.c b/source/nsswitch/idmap.c
index 676ab6e..49ed62b 100644
--- a/source/nsswitch/idmap.c
+++ b/source/nsswitch/idmap.c
@@ -367,7 +367,7 @@ NTSTATUS idmap_init(void)
                /* terminate */
                dl[1] = NULL;
 
-               dom_list = dl;
+               dom_list = (const char **)dl;
                default_domain = dl[0];
        }
 


-- 
Samba Shared Repository

Reply via email to