]> andersk Git - moira.git/commitdiff
Remove incorrect diagnostic message.
authorzacheiss <zacheiss>
Mon, 30 Oct 2006 17:34:51 +0000 (17:34 +0000)
committerzacheiss <zacheiss>
Mon, 30 Oct 2006 17:34:51 +0000 (17:34 +0000)
incremental/winad/winad.c

index dcb1e9e7f561102b3f2fa78943462627cb818bfc..729d89245431155a9aaab85b503a38e250a33588 100755 (executable)
@@ -996,11 +996,7 @@ void do_member(LDAP *ldap_handle, char *dn_path, char *ldap_hostname,
         }
       ptr = after;
       if (!strcasecmp(ptr[LM_TYPE], "LIST"))
-        {
-          com_err(whoami, 0, "Unable to add %s to group %s : %s is not a group", 
-                  after[2], after[0], after[0]);
-          return;
-        }
+       return;
       strcpy(user_name, after[LM_MEMBER]);
       strcpy(group_name, after[LM_LIST]);
       strcpy(user_type, after[LM_TYPE]);
@@ -1037,11 +1033,7 @@ void do_member(LDAP *ldap_handle, char *dn_path, char *ldap_hostname,
         }
       ptr = before;
       if (!strcasecmp(ptr[LM_TYPE], "LIST"))
-        {
-          com_err(whoami, 0, "Unable to add %s to group %s : %s is not a group", 
-                  before[2], before[0], before[0]);
-          return;
-        }
+       return;
       strcpy(user_name, before[LM_MEMBER]);
       strcpy(group_name, before[LM_LIST]);
       strcpy(user_type, before[LM_TYPE]);
This page took 0.072634 seconds and 5 git commands to generate.