]> andersk Git - moira.git/commitdiff
Distinguish list not existing from other error cases.
authorzacheiss <zacheiss>
Fri, 13 Mar 2009 02:09:03 +0000 (02:09 +0000)
committerzacheiss <zacheiss>
Fri, 13 Mar 2009 02:09:03 +0000 (02:09 +0000)
incremental/ldap/winad.c

index d515c1fda876c2e6a8e5af7d6a4654a284bd76d7..04209d4f5f5e2d9928bed03206ceb91dba4dc75a 100755 (executable)
@@ -5869,8 +5869,10 @@ int ProcessAce(LDAP *ldap_handle, char *dn_path, char *Name, char *Type,
     
       if (rc = mr_query("get_list_info", 1, av, GetAceInfo, AceInfo))
         { 
-          com_err(whoami, 0, "Unable to get ACE info for list %s : %s", 
-                 GroupName, error_message(rc));
+         if(rc != MR_LIST)
+           com_err(whoami, 0, "Unable to get ACE info for list %s : %s", 
+                   GroupName, error_message(rc));
+
           return(1);
         }
 
This page took 0.046459 seconds and 5 git commands to generate.