]> andersk Git - moira.git/commitdiff
Don't flip out if a list doesn't exist.
authorzacheiss <zacheiss>
Thu, 12 Mar 2009 13:46:41 +0000 (13:46 +0000)
committerzacheiss <zacheiss>
Thu, 12 Mar 2009 13:46:41 +0000 (13:46 +0000)
incremental/ldap/winad.c

index bc87b9cd9f2a9b85c9f03b4d639ca01590ef905d..d515c1fda876c2e6a8e5af7d6a4654a284bd76d7 100755 (executable)
@@ -6032,6 +6032,9 @@ int populate_group(LDAP *ldap_handle, char *dn_path, char *group_name,
   if (rc = mr_query("get_end_members_of_list", 1, av,
                     member_list_build, call_args))
     {
+      if(rc == MR_LIST)
+       return(0);
+      
       com_err(whoami, 0, "Unable to populate list %s : %s", 
               group_name, error_message(rc));
       return(3);
This page took 0.033057 seconds and 5 git commands to generate.