Removed global_myworkgroup, global_myname, global_myscope. Added liberal
[samba.git] / source3 / passdb / pdb_interface.c
index ca199f8ea6da0da630dd5879494317d8990c0dd4..edc310c0c1a5985fd6357104bd25cdbcfefc0635 100644 (file)
@@ -458,7 +458,7 @@ static NTSTATUS make_pdb_context(struct pdb_context **context)
   Make a pdb_context, given an array of strings
  *******************************************************************/
 
-NTSTATUS make_pdb_context_list(struct pdb_context **context, char **selected) 
+NTSTATUS make_pdb_context_list(struct pdb_context **context, const char **selected) 
 {
        int i = 0;
        struct pdb_methods *curmethods, *tmpmethods;
@@ -492,7 +492,7 @@ NTSTATUS make_pdb_context_string(struct pdb_context **context, const char *selec
 {
        NTSTATUS ret;
        char **newsel = str_list_make(selected, NULL);
-       ret = make_pdb_context_list(context, newsel);
+       ret = make_pdb_context_list(context, (const char **)newsel);
        str_list_free(&newsel);
        return ret;
 }